/* ===== Authentication Pages ===== */
.auth-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/bg-auth.jpg') no-repeat center center;
    background-size: cover;
    padding: 2rem;
}

.auth-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(106, 17, 203, 0.7);
}

.auth-card {
    position: relative;
    width: 100%;
    max-width: 450px;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    z-index: 1;
    animation: slideInDown 0.5s ease-in-out;
}

.auth-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-logo img {
    max-height: 60px;
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    font-size: 1rem;
    text-align: center;
    color: var(--gray);
    margin-bottom: 2rem;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.auth-form .form-control {
    padding-left: 2.5rem;
    height: 45px;
    border-radius: var(--border-radius-lg);
}

.auth-form .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.auth-form .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.auth-form .form-check-input {
    margin-top: 0.2rem;
}

.auth-form .forgot-password {
    font-size: 0.875rem;
    color: var(--gray);
}

.auth-btn {
    height: 45px;
    font-weight: 500;
    border-radius: var(--border-radius-lg);
    margin-bottom: 1.5rem;
}

.auth-footer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray);
}

.auth-footer a {
    font-weight: 500;
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 575.98px) {
    .auth-card {
        padding: 1.5rem;
    }
    
    .auth-title {
        font-size: 1.5rem;
    }
}