.auth-body { min-height: 100dvh; display: flex; align-items: center; justify-content: center; }
.auth-wrap { width: 100%; max-width: 940px; padding: 24px 20px; position: relative; z-index: 1; }
.auth-brand { justify-content: center; display: flex; margin: 0 auto 20px; width: max-content; font-size: 18px; }

.auth-card { display: grid; grid-template-columns: 1fr 0.85fr; background: var(--surface);
  border: 1px solid var(--border-2); border-radius: 22px; overflow: hidden;
  box-shadow: 0 0 0 4px var(--glow-soft), 0 30px 80px rgba(0,0,0,.5); }

.auth-panel { padding: 40px 40px 34px; }
.auth-h1 { font-size: 26px; font-weight: 850; letter-spacing: -.02em; margin: 0 0 4px; }
.auth-sub { color: var(--muted); font-size: 14px; margin: 0 0 22px; }

.fld { display: block; margin-bottom: 15px; }
.fld span { display: block; font-size: 12.5px; font-weight: 650; color: var(--ink-dim); margin-bottom: 6px; }
.fld input { width: 100%; background: var(--surface-2); border: 1px solid var(--border-2); border-radius: 11px;
  padding: 13px 14px; color: var(--ink); font-size: 15px; font-family: inherit; outline: none; transition: .15s; }
.fld input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--glow-soft); }
.fld input::placeholder { color: var(--faint); }

.auth-submit { width: 100%; margin-top: 6px; }

.auth-err { background: var(--crit-soft); color: var(--accent-ink); border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-radius: 10px; padding: 11px 14px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.auth-ok { background: var(--good-soft); color: var(--good); border: 1px solid color-mix(in srgb, var(--good) 30%, transparent);
  border-radius: 10px; padding: 11px 14px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.auth-fineprint { font-size: 11.5px; color: var(--muted); margin: 12px 0 0; line-height: 1.5; }

.auth-links { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
  margin-top: 18px; font-size: 13px; color: var(--muted); }
.auth-links a { color: var(--accent-ink); text-decoration: none; font-weight: 650; }
.auth-links a:hover { text-decoration: underline; }

.auth-aside { padding: 40px 34px; display: flex; flex-direction: column; justify-content: center; gap: 12px;
  background:
    radial-gradient(90% 70% at 70% 10%, var(--glow-soft), transparent 60%),
    linear-gradient(180deg, var(--surface-2), var(--surface-3));
  border-left: 1px solid var(--border); }
.aside-shield { width: 60px; height: 60px; border-radius: 17px; display: grid; place-items: center; font-size: 30px; color: #fff;
  background: linear-gradient(155deg, var(--accent-2), #c00d20); box-shadow: 0 10px 34px var(--glow); }
.auth-aside h3 { margin: 8px 0 0; font-size: 21px; font-weight: 800; line-height: 1.15; letter-spacing: -.01em; }
.auth-aside p { margin: 0; color: var(--ink-dim); font-size: 13.5px; line-height: 1.5; }
.aside-badges { display: flex; gap: 10px; margin-top: 10px; }
.aside-badges div { flex: 1; background: color-mix(in srgb, var(--surface) 60%, transparent); border: 1px solid var(--border);
  border-radius: 11px; padding: 10px 8px; text-align: center; }
.aside-badges b { display: block; font-size: 15px; font-weight: 800; color: var(--accent-ink); }
.aside-badges span { font-size: 10px; color: var(--muted); }

.verify-ic { width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; font-size: 30px; font-weight: 800;
  margin-bottom: 16px; }
.verify-ic.ok { background: var(--good-soft); color: var(--good); }
.verify-ic.bad { background: var(--crit-soft); color: var(--accent); }

.auth-foot { text-align: center; color: var(--muted); font-size: 11.5px; margin: 18px 0 0; }

@media (max-width: 720px) {
  .auth-card { grid-template-columns: 1fr; }
  .auth-aside { display: none; }
  .auth-panel { padding: 30px 24px 26px; }
}
