/* ── signup screen — extends home/index.css ─────────────── */
.auth-card-wide { max-width: 540px; }

.auth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.auth-select {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink-navy);
  background: var(--ivory-card);
  border: 1px solid var(--ivory-border);
  padding: 14px 16px;
  padding-right: 40px;
  border-radius: 2px;
  outline: none;
  transition: border-color 180ms ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%236B6F76' stroke-width='1.4' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.auth-select:focus { border-color: var(--muted-burgundy); }
.auth-select option { font-size: 14px; }
.auth-select optgroup {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--ink-navy);
}

@media (max-width: 540px) {
  .auth-row { grid-template-columns: 1fr; gap: 18px; }
}

/* Honeypot: removed from layout + a11y tree but still rendered, so
   form-filling bots see and complete it. Not display:none — some bots
   skip non-rendered fields; this stays "present" while invisible. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
