.auth-wrap {
  display: flex;
  justify-content: center;
  padding: 24px 0 60px;
  width: 100%;
}
@media (min-width: 761px) {
  .auth-wrap-pending { padding-top: clamp(64px, 10vh, 96px); }
}
.auth-card {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 26px 26px 22px;
}
.auth-title { font-size: 22px; margin: 12px 0 2px; }
.auth-sub { font-size: 13px; margin-bottom: 18px; }
.auth-notice { display: grid; gap: 4px; margin-bottom: 14px; padding: 12px; border-radius: var(--r); background: var(--amber-soft); }
.auth-notice b { color: var(--warn-text); font-size: 12px; }
.auth-notice p { font-size: 12px; line-height: 1.5; }
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-label { font-size: 12px; color: var(--text-2); font-weight: 500; }
.auth-input {
  background: var(--s2);
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  padding: 10px 12px;
  transition: border-color var(--dur-fast) var(--ease);
}
.auth-input:focus { outline: none; border-color: var(--pink); }
.auth-hint { font-size: 11px; }
.auth-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.4;
  cursor: pointer;
}
.auth-check input { margin-top: 2px; flex-shrink: 0; accent-color: var(--pink); }
.auth-check a { color: var(--pink); }
.auth-submit { margin-top: 6px; padding: 11px; font-size: 14px; }
.auth-alt { text-align: center; font-size: 12.5px; margin-top: 16px; }
.auth-alt a { color: var(--pink); font-weight: 500; }
.auth-err {
  background: var(--danger-soft);
  color: var(--danger-text);
  border-radius: var(--r);
  padding: 9px 12px;
  font-size: 12.5px;
}
.auth-field-err { font-size: 11.5px; color: var(--danger-text); }
.auth-check-err { display: block; margin-top: 3px; }
.auth-turnstile {
  display: flex;
  min-height: 65px;
  min-width: 0;
  width: 100%;
}
.auth-turnstile .cf-turnstile { width: 100%; }
.auth-turnstile iframe { width: 100% !important; max-width: 100%; }

@media (max-width: 760px) {
  .auth-wrap { padding-top: 10px; }
  .auth-card { max-width: 100%; padding: 22px 16px 20px; }
}
