/* =========================== AUTH PAGES =========================== */
.auth-body {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(160deg, var(--navy-900) 0%, #1D2B4F 55%, var(--indigo-600) 130%);
    padding: 20px;
}
.auth-wrapper { width: 100%; max-width: 420px; }
.auth-card {
    background: var(--surface); border-radius: 16px; padding: 36px 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.auth-card-wide { max-width: 480px; }
.auth-logo { display: flex; justify-content: center; margin-bottom: 18px; }
.auth-logo img { width: 64px; height: 64px; border-radius: 14px; object-fit: cover; }
.auth-logo-placeholder {
    width: 64px; height: 64px; border-radius: 14px; background: var(--indigo-50);
    display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.auth-title { text-align: center; font-size: 20px; margin-bottom: 4px; }
.auth-subtitle { text-align: center; color: var(--text-secondary); font-size: 13px; margin-bottom: 24px; }
.auth-form .form-group:last-of-type { margin-bottom: 20px; }
.auth-footer { text-align: center; font-size: 13px; color: var(--text-secondary); margin-top: 20px; line-height: 1.8; }
