.auth-main { padding: 1.5cm 20px 60px; display: flex; justify-content: center; }
.auth-shell {
  width: min(460px, 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 44px);
}
.auth-shell h1 { margin: 0 0 6px; font-size: 24px; letter-spacing: -.2px; }
.auth-shell .auth-sub { margin: 0 0 28px; color: var(--muted); font-size: 14px; }
.auth-fields { display: flex; flex-direction: column; gap: 16px; }
.auth-switch { margin: 18px 0 0; text-align: center; font-size: 13px; color: var(--muted); }
.auth-switch a { color: var(--orange); font-weight: 600; }
.auth-switch a:hover { text-decoration: underline; }
.auth-forgot { display: block; margin-top: 10px; text-align: center; font-size: 12px; color: var(--muted); }
.auth-forgot:hover { color: var(--orange); }
.dashboard-shell {
  width: min(760px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dashboard-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: clamp(22px, 4vw, 32px);
}
.dashboard-card h2 { margin: 0 0 4px; font-size: 18px; text-transform: uppercase; letter-spacing: -.1px; }
.dashboard-card p { margin: 0; color: var(--muted); font-size: 14px; }
.dashboard-header-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.logout-link { font: 500 12px/1 "IBM Plex Mono", monospace; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); border-radius: 6px; padding: 10px 16px; }
.logout-link:hover { color: var(--orange); border-color: var(--orange); }
.status-pill { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; font: 600 11px/1 "IBM Plex Mono", monospace; letter-spacing: .6px; text-transform: uppercase; }
.status-pill.pending { background: #fff0e7; color: #a15321; }
.status-pill.verified { background: #eaf7ee; color: #175b2b; }
