/* Shared styling for the pre-login auth pages: login, signup, forgot, reset.
   These render before the theme system loads, so they're self-contained — but they
   mirror DeedGate's default "deedgate" theme (clean, trustworthy single-user tool:
   calm professional blue on a cool off-white, soft borders, modest radius). Keep
   these values in sync with [data-theme="deedgate"] in hype-themes.css. */
*{box-sizing:border-box;margin:0;padding:0}
body{min-height:100vh;display:flex;align-items:center;justify-content:center;padding:24px;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:#16202e;background:#f3f6fb;-webkit-font-smoothing:antialiased}
.bg{display:none}
.card{position:relative;z-index:1;width:100%;max-width:380px;background:#fff;
  border:1px solid #d7e0ee;border-radius:10px;padding:30px 28px;
  box-shadow:0 1px 2px rgba(16,32,55,.06),0 10px 28px rgba(16,32,55,.07)}
.brand{font-weight:800;font-size:28px;letter-spacing:-.5px;color:#16202e;
  display:flex;align-items:center;gap:9px}
.brand .dot{width:12px;height:12px;border-radius:50%;background:#1f5fae}
.sub{color:#5c6b80;font-size:14px;margin:6px 0 22px}
label{display:block;font-size:13px;font-weight:600;color:#3c4a5c;margin:14px 0 6px}
input{width:100%;background:#fff;color:#16202e;border:1px solid #cdd8e8;border-radius:8px;
  padding:12px 14px;font-size:15px;font-family:inherit}
input:focus{outline:2px solid #1f5fae;outline-offset:0;border-color:#1f5fae}
input.code{text-transform:uppercase;letter-spacing:3px;font-weight:700;font-family:ui-monospace,Menlo,monospace}
.pwwrap{position:relative}
.pwwrap input{padding-right:64px}
.show{position:absolute;right:6px;top:6px;bottom:6px;padding:0 12px;border:1px solid #d7e0ee;border-radius:7px;
  background:#eef2f8;color:#5c6b80;font-size:12px;font-weight:700;cursor:pointer}
.show:hover{color:#16202e;border-color:#cdd8e8}
button.go{width:100%;margin-top:20px;padding:13px;border:none;border-radius:8px;background:#1f5fae;
  color:#fff;font-size:15px;font-weight:800;cursor:pointer;transition:background .15s ease}
button.go:hover{background:#1a5197}
button.go:disabled{opacity:.5;cursor:default}
.err{color:#c0392b;font-size:13px;margin-top:14px;min-height:18px;text-align:center}
.ok{color:#1f8a4c;font-size:13.5px;margin-top:14px;text-align:center;line-height:1.5}
.hint{color:#7c8799;font-size:11.5px;text-align:center;margin-top:18px}
.hint a,.alt a{color:#1f5fae;text-decoration:none;font-weight:600}
.hint a:hover,.alt a:hover{text-decoration:underline}
.alt{text-align:center;font-size:13px;color:#5c6b80;margin-top:18px;
  border-top:1px solid #e6ecf5;padding-top:16px}
.banner{background:#eef2f8;border:1px solid #d7e0ee;border-radius:8px;padding:10px 12px;
  font-size:13px;color:#3c4a5c;margin-bottom:6px}
.banner.good{border-color:#1f8a4c;color:#1f8a4c}
.banner.bad{border-color:#c0392b;color:#c0392b}
