/* =================== fld.css =================== */
.fld {display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--hc-sp-3)}
.fld > label {font-size: var(--hc-fs-sm); font-weight: 500}


.auth-premium__panel .fld {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.auth-premium__panel .fld span {
  font-family: var(--hc-mono, "JetBrains Mono", monospace);
  font-size: 11.5px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 23, 20, 0.66);
}
/* v8.2 — auth panel uses .premium-surface--highlight (ink-tinted bg),
 * default ink-on-ink label colour is unreadable. Override to gold accent. */
.premium-surface--highlight.auth-premium__panel .fld span,
.premium-surface--highlight .auth-premium__panel .fld span {
  color: var(--hc-gold-1, var(--hc-gold, #d4b896));
}
.auth-premium__panel .fld input,
.auth-premium__panel .fld textarea,
.auth-premium__panel .fld select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--sf-line-strong, rgba(141, 109, 71, 0.22));
  background: rgba(255, 252, 247, 0.98);
  color: var(--sf-ink, var(--hc-ink, #1a1714));
  font-family: var(--hc-sans, "Outfit", sans-serif);
  font-size: 15px;
  line-height: 1.35;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.auth-premium__panel .fld input::placeholder,
.auth-premium__panel .fld textarea::placeholder {
  color: rgba(26, 23, 20, 0.38);
}
.auth-premium__panel .fld input:focus,
.auth-premium__panel .fld textarea:focus,
.auth-premium__panel .fld select:focus {
  outline: none;
  border-color: var(--hc-accent, #8b7355);
  box-shadow: 0 0 0 3px rgba(212, 184, 150, 0.22);
  background: var(--hc-paper, #ffffff);
}


/* Tracking-page field styling now lives in its own block (219-tracking.css),
 * co-located with the rest of that page's premium styling. */

/* v7.66 — password show/hide toggle */
.fld__pw { position: relative; display: block; }
.fld__pw input { padding-right: 44px; width: 100%; }
.fld__pw-toggle { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; padding: 0; border: 0; background: transparent; color: var(--hc-accent, #8b7355); cursor: pointer; border-radius: 8px; }
.fld__pw-toggle:hover, .fld__pw-toggle[aria-pressed="true"] { color: var(--hc-ink, #1a1714); }
