/* Authentication Pages Styles */

.auth-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.auth-card {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    width: 100%;
    max-width: 550px;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.auth-form .form-floating {
    margin-bottom: 1rem;
}

.auth-form .form-control {
    border: 1px solid #dbeafe;
    background-color: #f8f9fa;
}

.auth-form .form-control:focus {
    border-color: #1e3a5f;
    background-color: white;
    box-shadow: 0 0 0 0.25rem rgba(30, 58, 95, 0.15);
}

.auth-form .form-label {
    color: #495057;
}

.auth-form .checkbox {
    margin-bottom: 1.5rem;
}

.auth-form .form-check-input {
    border-color: #1e3a5f;
}

.auth-form .form-check-input:checked {
    background-color: #1e3a5f;
    border-color: #1e3a5f;
}

.auth-form .btn-primary {
    margin-bottom: 1.5rem;
}

.auth-links {
    text-align: center;
}

.auth-links a {
    color: #1e3a5f;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-card {
        padding: 2rem;
        margin: 1rem;
    }

    .auth-title {
        font-size: 1.75rem;
    }
}

