:root{
  /* match joinnow.css */
  --bg:#ECEBEB; --paper:#fff; --ink:#333; --muted:#666;
  --primary:#4d87de; --primary2:#4d87de; --accent:#8EAAD4; --soft:#F4F7FB;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0; background:var(--bg); color:var(--ink);
  font-family:'neue-haas-grotesk-display',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.logo {
  width: 150px;
}

/* Shared layout (same structure as joinnow) */
.frame{
  max-width:820px; margin:0 auto; padding:28px 20px;
  min-height:100vh; display:flex; flex-direction:column;
}
.brandbar{
  display:flex; align-items:center; justify-content:space-between; margin-bottom:18px;
}
.brand{ display:flex; align-items:center; gap:10px; font-weight:800; }
.brand .dot{ width:14px; height:14px; border-radius:50%;
  background:linear-gradient(90deg,var(--primary2),var(--primary)); }
.brand .word{ color:var(--primary); }
.mini-cta{ display:flex; align-items:center; gap:8px; }
.muted{ color:var(--muted); }
.link{ color:var(--primary); text-decoration:none; font-weight:700; }
.link:hover{ text-decoration:underline; }

/* Card like join page */
.card{
  background:var(--paper); border:1px solid #eee; border-radius:16px;
  box-shadow:0 2px 6px rgba(0,0,0,.05);
  padding:28px; display:flex; align-items:center; justify-content:center;
}

/* Centered column */
.auth{
  width:100%; max-width:560px; margin:0 auto; display:flex; flex-direction:column; gap:16px;
}
.qhead{ text-align:center; margin-bottom:6px; }
.qhead h1{ font-size:2rem; line-height:1.15; margin:0; }
.qhead .lede{ color:var(--muted); font-size:1.05rem; margin:.35rem 0 0; }

.field{ display:flex; flex-direction:column; gap:8px; }
.field span{ font-weight:800; }
input{
  width:100%; padding:12px 14px; border:1px solid #e6e6e6; border-radius:10px;
  font:inherit; background:#fff; transition:border-color .2s ease, box-shadow .2s ease;
}
input:focus{
  border-color:var(--accent); outline:none;
  box-shadow:0 0 0 3px rgba(142,170,212,.25);
}

.actions{ display:flex; gap:12px; justify-content:center; margin-top:8px; flex-wrap:wrap; }
.btn-primary,.btn-secondary{
  display:inline-flex; align-items:center; gap:10px; border-radius:50px;
  padding:14px 18px; font-weight:500; cursor:pointer; text-decoration:none; font-size:1rem;
}
.btn-primary{
  background:linear-gradient(90deg,var(--primary2),var(--primary));
  color:#fff; border:none;
}
.btn-primary:active{ outline:2px solid var(--accent); outline-offset:2px; }
.btn-secondary{
  background:#fcfcfd; color:var(--primary); border:1px solid var(--accent);
}
.btn-secondary:active{ outline:2px solid var(--accent); outline-offset:2px; }

.status{ text-align:center; min-height:1.25rem; margin-top:6px; }
.foot{ text-align:center; margin-top:14px; }

@media (max-width:760px){
  .qhead h1{ font-size:1.6rem; }
}
