.content-area {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.card {
    border-radius: 10px;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.welcome-text {
    color: #2c3e50;
    font-weight: 600;
}

.btn-login, .btn-compact-login, .btn-request-code, .btn-reset-password {
    font-weight: 600;
    padding: 10px;
    transition: all 0.3s;
}

.btn-login:hover, .btn-compact-login:hover, .btn-request-code:hover, .btn-reset-password:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.forgot-password-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.forgot-password-link:hover {
    color: #007bff;
    text-decoration: underline;
}

.input-group-text {
    background-color: #f8f9fa;
    border-right: 0;
}

.form-control {
    border-left: 0;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.switch-to-compact, .switch-to-standard {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.switch-to-compact:hover, .switch-to-standard:hover {
    text-decoration: underline;
}

#resendCodeLink {
    color: #6c757d;
    font-size: 0.9rem;
}

#resendCodeLink:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Animation for view switching */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#standardLoginView, #compactLoginView, 
#forgotPasswordStep1, #forgotPasswordStep2, #forgotPasswordStep3 {
    animation: fadeIn 0.3s ease-in-out;
}
