/* Login / register */
.auth-page {
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
}
.auth-card {
  width: 100%; max-width: 420px;
  background: #fff; border: 2px solid var(--ink); border-radius: 24px;
  padding: 36px 32px; box-shadow: 7px 7px 0 var(--ink);
}
.auth-brand { justify-content: center; margin-bottom: 22px; }
.auth-title {
  font: 800 30px 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.03em; margin: 0; text-align: center;
}
.auth-sub {
  font: 500 15px/1.5 'Hanken Grotesk', sans-serif;
  color: var(--muted); margin: 8px 0 26px; text-align: center;
}
.field-label {
  font: 700 13px 'Hanken Grotesk', sans-serif;
  display: block; margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted-2);
}
.text-input {
  width: 100%; height: 52px; padding: 0 16px;
  border: 2px solid var(--ink); border-radius: 12px;
  font: 600 15px 'Hanken Grotesk', sans-serif; background: #fff;
}
.text-input:focus { box-shadow: 3px 3px 0 var(--ink); outline: none; }
.auth-error {
  font: 600 14px/1.4 'Hanken Grotesk', sans-serif;
  color: #C0392B; min-height: 20px; margin: 14px 0 0;
}
.auth-submit { width: 100%; margin-top: 16px; height: 54px; }
.auth-alt {
  text-align: center; margin-top: 22px;
  font: 500 14px 'Hanken Grotesk', sans-serif; color: var(--muted);
}
.auth-alt a { color: var(--brand); font-weight: 700; }

.field-label-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.auth-forgot { font: 700 13px 'Hanken Grotesk', sans-serif; color: var(--brand); }

.auth-ok {
  background: #E7F6EC; color: #1F6B43;
  border: 2px solid var(--ink); border-radius: 12px;
  padding: 12px 16px;
  font: 600 14px/1.45 'Hanken Grotesk', sans-serif;
}
.auth-hint { color: var(--muted-2); font-weight: 500; }
