body { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: var(--bg); }
.auth-box { width: 100%; max-width: 360px; padding: 32px 28px; background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--border); }
.auth-logo { width: 160px; height: auto; display: block; margin: 0 0 20px; }
.auth-box h1 { font-family: var(--display-face); font-weight: 400; text-transform: uppercase; letter-spacing: 0.01em; font-size: 24px; color: var(--ink); margin-bottom: 4px; }
.auth-box p { font-size: 13px; color: var(--ink-muted); margin-bottom: 20px; }
.auth-field { margin-bottom: 14px; }
.auth-field label { display: block; font-size: 12px; font-weight: 700; color: var(--ink-muted); margin-bottom: 5px; }
.auth-field input { width: 100%; padding: 11px 12px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: var(--bg); color: var(--ink); font-size: 14px; }
.auth-field .hint { font-size: 11px; color: var(--ink-muted); margin-top: 4px; }
.auth-submit { width: 100%; padding: 12px; border-radius: var(--radius-sm); border: none; background: var(--primary); color: var(--primary-ink); font-weight: 800; font-size: 14px; cursor: pointer; margin-top: 6px; }
.auth-error { color: var(--bad); font-size: 12.5px; margin-top: 10px; min-height: 16px; }
.auth-switch { text-align: center; margin-top: 18px; font-size: 13px; color: var(--ink-muted); }
.auth-switch a { color: var(--accent); font-weight: 700; text-decoration: none; }
.auth-terms { font-size: 12px; color: var(--ink-muted); margin: 10px 0 14px; line-height: 1.5; }
.auth-terms label { display: flex; align-items: flex-start; gap: 8px; cursor: pointer; }
.auth-terms input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; }
.auth-terms a { color: var(--accent); text-decoration: underline; }
