/* Spotter Supply — auth pages. Depends on style.css tokens. */
.authwrap { max-width: 440px; margin: 0 auto; padding: 56px 22px 84px; }
.authcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: 0 10px 40px rgba(0,0,0,.05); }
.authwrap h1 { font-size: 1.55rem; margin-bottom: .3rem; }
.authwrap .sub { color: var(--muted); margin-bottom: 1.5rem; font-size: .95rem; }

.auth-field { margin-bottom: 14px; }
.auth-field label { display: block; font-size: .8rem; font-weight: 650; color: var(--ink); margin-bottom: 6px; }
.auth-field .hint { font-family: var(--mono); font-size: .68rem; color: var(--muted); font-weight: 400; }
.auth-field input { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line-2);
  border-radius: var(--r); font: inherit; font-size: 1rem; background: #fff; color: var(--ink); }
.auth-field input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-soft); }

.auth-msg { min-height: 1.2em; font-size: .88rem; margin: 8px 0 4px; }
.auth-msg.err { color: var(--danger, #c0392b); }
.auth-msg.ok { color: var(--ok); }
.auth-actions { margin-top: 10px; }

.auth-alt { margin-top: 16px; font-size: .9rem; color: var(--muted); text-align: center; }
.auth-alt a { color: var(--orange-dk); font-weight: 600; }

.authwrap .two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.acct-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.acct-email { font-family: var(--mono); font-size: .82rem; color: var(--muted); margin-top: 2px; }
