/* ============================================================
   auth.css — login, register, onboarding (centered card)
   ============================================================ */
.auth-wrap   { display: flex; min-height: 100vh; flex-direction: column; }
.auth-center { display: flex; flex: 1; align-items: center; justify-content: center; padding: 48px 24px; }
.auth-box    { width: 100%; max-width: 384px; }
.auth-box--md{ max-width: 448px; }

.auth-logo { margin-bottom: 32px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.auth-logo .brand-name { font-size: 24px; }
.brand-mark--lg { height: 28px; width: 28px; font-size: 13px; }

.auth-card { border: 1px solid var(--line); background: var(--surface); border-radius: var(--r-2xl); padding: 28px; box-shadow: var(--shadow-sm); }
.auth-sub  { margin-top: 4px; font-size: 14px; color: var(--muted); }
.auth-form { margin-top: 24px; }
.auth-form > * + * { margin-top: 16px; }
.auth-form .form-alert { margin-bottom: 4px; }

.label-row  { display: flex; align-items: center; justify-content: space-between; }
.link-mini  { font-size: 12px; font-weight: 500; color: var(--accent); }
.link-mini:hover  { color: var(--accent-600); }
.link-accent { font-weight: 600; color: var(--accent); }
.link-accent:hover { color: var(--accent-600); }
.auth-alt  { margin-top: 20px; text-align: center; font-size: 14px; color: var(--muted); }
.auth-fine { margin-top: 12px; text-align: center; font-size: 12px; line-height: 1.5; color: var(--faint); }

/* onboarding stepper */
.stepper { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; color: var(--faint); }
.step    { display: flex; align-items: center; gap: 6px; }
.step--done    { color: var(--accent); }
.step--current { color: var(--text-2); }
.step__num { display: flex; height: 16px; width: 16px; align-items: center; justify-content: center; border-radius: var(--r-full); font-size: 10px; color: #fff; }
.step__num--done    { background: var(--accent-600); }
.step__num--current { background: var(--text); }
.stepper__line { height: 1px; width: 20px; background: var(--line); }

.onb-actions  { display: flex; align-items: center; justify-content: space-between; padding-top: 4px; }
.field-rowcols { display: grid; gap: 16px; }
@media (min-width: 640px) { .field-rowcols { grid-template-columns: 1fr 120px; } }
