/* Auth layout styles */
.auth-body { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); min-height: 100vh; }

.auth-wrapper {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; padding: 24px;
}

.auth-brand {
    margin-bottom: 24px;
}
.auth-brand a {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: #fff;
}
.brand-logo { font-size: 28px; }
.brand-name { font-size: 22px; font-weight: 800; letter-spacing: -.5px; }

.auth-card {
    background: #fff; border-radius: 16px;
    padding: 36px; width: 100%; max-width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

.auth-title { font-size: 22px; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.auth-subtitle { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; }

.auth-form { margin-top: 24px; }

.auth-switch {
    text-align: center; font-size: 14px; color: var(--gray-500);
    margin-top: 20px;
}
.auth-switch a { color: var(--primary); font-weight: 600; text-decoration: none; }
.auth-switch a:hover { text-decoration: underline; }

.auth-terms { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: 12px; line-height: 1.5; }

.auth-footer {
    margin-top: 24px; font-size: 13px; color: rgba(255,255,255,.6);
}

@media (max-width: 480px) {
    .auth-card { padding: 24px; }
}
