* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #2c3e50, #1abc9c);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 100%;
    max-width: 400px;
}

.login-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    text-align: center;
}

.login-box h2 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.login-box p {
    margin-bottom: 25px;
    color: #777;
}

.input-group {
    text-align: left;
    margin-bottom: 20px;
}

.input-group label {
    font-size: 14px;
    color: #555;
}

.input-group input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #1abc9c;
    outline: none;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #1abc9c;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #16a085;
}

.extra-links {
    margin-top: 15px;
}

.extra-links a {
    font-size: 13px;
    text-decoration: none;
    color: #1abc9c;
}

.extra-links a:hover {
    text-decoration: underline;
}