body.auth-body {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--hero-bg);
}
.auth-card {
  width: 100%; max-width: 380px; background: var(--card); border-radius: 16px;
  padding: 32px 28px; box-shadow: var(--shadow);
}
.auth-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.auth-brand-row img { width: 28px; height: auto; }
.auth-brand { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--ink); margin: 0; }
.auth-slogan { font-size: 11px; color: var(--color-text-muted); margin: 0; }
.auth-sub { font-size: 13px; color: var(--ink-2); margin: 0 0 24px; }
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-form .btn-primary { width: 100%; padding: 11px 18px; margin-top: 4px; }
.auth-links { margin-top: 16px; display: flex; justify-content: space-between; font-size: 12.5px; }
.auth-links a, .auth-links button.link {
  color: var(--ink-2); text-decoration: none; background: none; border: none;
  font: inherit; font-size: inherit; cursor: pointer; padding: 0;
}
.auth-links a:hover, .auth-links button.link:hover { color: var(--ink); text-decoration: underline; }
.auth-view { display: none; }
.auth-view.active { display: block; }
.dev-reset-link {
  margin-top: 14px; padding: 12px; border-radius: 10px; background: var(--chip-bg);
  font-size: 12px; color: var(--ink-2); line-height: 1.6; word-break: break-all;
}
.dev-reset-link a { color: var(--accent); font-weight: 600; }
