.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
}

.login-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(8, 31, 92, 0.15);
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.login-card h2 {
    color: #081F5C;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.input-group label {
    display: block;
    color: #334EAC;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #BAD6EB;
    border-radius: 10px;
    font-size: 1rem;
    font-family: Georgia, serif;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #7096D1;
    box-shadow: 0 0 0 3px rgba(112, 150, 209, 0.2);
}

.login-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #334EAC, #7096D1);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(51, 78, 172, 0.3);
}

.login-footer {
    margin-top: 2rem;
    color: #7096D1;
}

.login-footer a {
    color: #334EAC;
    text-decoration: none;
    font-weight: 500;
}

.login-footer a:hover {
    text-decoration: underline;
}

.login-footer p {
    margin-bottom: 0.5rem;
}
