/* ===== Auth Pages - Standalone Styles ===== */
/* Used by Login, ForgotPassword, ResetPassword, VerifyTwoFactor */
/* These pages use Layout = null, so this CSS is self-contained */

/* ===== PAGE LAYOUT ===== */
body {
    background: linear-gradient(135deg, #152a45 0%, #1e3a5f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

/* ===== CARD ===== */
.login-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 420px;
    width: 100%;
    padding: 40px;
}

/* ===== HEADER ===== */
.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h1 {
    color: #1e3a5f;
    font-weight: 700;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-logo {
    flex-shrink: 0;
}

.login-header p {
    color: #6c757d;
    margin-top: 8px;
}

/* ===== FORM CONTROLS ===== */
.login-card .form-control {
    border-radius: 8px;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
}

.login-card .form-control:focus {
    border-color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.15);
}

/* ===== SUBMIT BUTTON ===== */
.btn-lf-login {
    width: 100%;
    margin-top: 16px;
    padding: 12px;
    font-size: 1rem;
}

/* ===== CHECKBOX ===== */
.login-card .form-check-input:checked {
    background-color: #1e3a5f;
    border-color: #1e3a5f;
}

/* ===== ALERTS ===== */
.login-card .alert {
    border-radius: 8px;
}

/* ===== VARIANTS ===== */

/* 2FA code input - large centered digits */
.auth-code-input {
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 0.5em;
}

/* Password reset hint */
.password-hint {
    font-size: 12px;
    color: #6c757d;
    margin-top: 4px;
}
