:root{
  --brand:#12a4e8;         /* blue like reference */
  --brand-dark:#0b79c3;
  --text:#0b1220;
  --muted:rgba(11,18,32,.65);
  --line:rgba(11,18,32,.12);
  --surface:#ffffff;

  --shadow: 0 18px 50px rgba(11,18,32,.10);
  --shadow2: 0 10px 24px rgba(11,18,32,.12);

  --head:"Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --body:"Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--body);
  color: var(--text);
  background: var(--surface);
}

/* ===== Grid / box background like reference ===== */
.auth-page{
  min-height: calc(100vh - 120px);
  display:flex;
  justify-content:center;
  padding: 80px 16px 80px;
  background:
    linear-gradient(to right, rgba(11,18,32,.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,18,32,.07) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* ===== Wrapper ===== */
.auth-wrap{
  width: min(980px, 100%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 18px;
}

/* ===== Hero ===== */
.hero{
  text-align:center;
  padding-top: 6px;
}
.hero-title{
  margin: 0;
  font-family: var(--head);
  letter-spacing: 1px;
  font-weight: 800;
  font-size: clamp(46px, 6vw, 78px);
  line-height: .92;
  text-transform: uppercase;
  font-size:95px !important;
}
.hero-title span{
  color: var(--brand);
}
.hero-sub{
  max-width: 520px;
    color: var(--muted);
    font-size: 18px;
    margin: 0 0 22px !important;
}

/* ===== Option cards row (like reference) ===== */
.option-row{
  width: min(680px, 100%);
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 12px;
}

.option-card{
  border: 1px solid rgba(11,18,32,.14);
  background: rgba(255,255,255,.92);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px 16px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  min-height: 96px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.option-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(11,18,32,.14);
  border-color: rgba(18,164,232,.40);
}
.option-ico{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(18,164,232,.10);
  color: var(--brand-dark);
  border: 1px solid rgba(18,164,232,.18);
}
.option-text{
  text-align:center;
}
.option-text strong{
  display:block;
  font-family: var(--body);
  letter-spacing: .6px;
  font-size: 13px;
  font-weight: 800;
}
.option-text small{
  display:block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

/* ===== Divider like OR ENTER CODE ===== */
.divider{
  width: min(760px, 100%);
  display:flex;
  align-items:center;
  gap: 14px;
  margin-top: 6px;
}
.divider::before,
.divider::after{
  content:"";
  flex:1;
  height:1px;
  background: rgba(11,18,32,.14);
}
.divider span{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .7px;
  color: rgba(11,18,32,.65);
  text-transform: uppercase;
}

/* ===== Form slab ===== */
.form-slab{
  width: min(860px, 100%);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(11,18,32,.14);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.form-grid{
  display:grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 12px;
  align-items:start;
}

/* fields */
.field{
  position:relative;
}
.field input{
  width:100%;
  height: 52px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(11,18,32,.14);
  background: #fff;
  outline:none;
  font-family: var(--body);
  font-size: 14px;
}
.field input:focus{
  border-color: rgba(18,164,232,.55);
  box-shadow: 0 0 0 4px rgba(18,164,232,.14);
}
.err{
  display:block;
  min-height: 16px;
  margin-top: 6px;
  color: #b42318;
  font-size: 12px;
  font-weight: 600;
}

/* password field with button */
.pw{
  display:flex;
  gap: 10px;
  align-items:center;
}
.pw input{ flex:1; }
.pw-btn{
  height: 52px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(11,18,32,.14);
  background: rgba(11,18,32,.04);
  font-weight: 800;
  cursor:pointer;
}
.pw-btn:hover{ background: rgba(11,18,32,.06); }

/* checkbox full width row */
.check{
  grid-column: 1 / -1;
  display:flex;
  gap: 10px;
  align-items:flex-start;
  font-size: 13px;
  color: rgba(11,18,32,.82);
}
.check input{ margin-top: 3px; }

/* CTA like reference button */
.cta{
  height: 52px;
  border: 0;
  border-radius: 10px;
  background: #0c0f14;
  color: #fff;
  font-weight: 900;
  letter-spacing: .8px;
  cursor:pointer;
  box-shadow: var(--shadow2);
}
.cta:disabled{ opacity:.6; cursor:not-allowed; }

.foot{
  margin: 12px 0 0;
  text-align:center;
  color: var(--muted);
  font-size: 13px;
}
.foot a{
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration:none;
}

/* Toast */
.toast{
  display:none;
  margin-top: 10px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.92);
  color: rgba(11,18,32,.86);
  font-weight: 700;
  box-shadow: var(--shadow2);
}

/* ===== Responsive ===== */
@media (max-width: 920px){
  .form-grid{ grid-template-columns: 1fr 1fr; }
  .cta{ grid-column: 1 / -1; }
}
@media (max-width: 720px){
  .option-row{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
}

/* extra buttons like reference */
.ghost{
  height: 52px;
  border-radius: 10px;
  border: 1px solid rgba(11,18,32,.14);
  background: rgba(255,255,255,.92);
  font-weight: 900;
  letter-spacing: .7px;
  cursor:pointer;
  box-shadow: var(--shadow2);
}
.ghost:hover{
  border-color: rgba(18,164,232,.40);
  box-shadow: 0 16px 46px rgba(11,18,32,.14);
}

.status{
  display:flex;
  align-items:center;
  height: 52px;
  border-radius: 10px;
  padding: 0 12px;
  border: 1px dashed rgba(11,18,32,.18);
  color: rgba(11,18,32,.72);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .4px;
}

.is-ok{
  border-style: solid !important;
  border-color: rgba(34,197,94,.35) !important;
  background: rgba(34,197,94,.06) !important;
  color: rgba(22,101,52,.95) !important;
}

.is-bad{
  border-style: solid !important;
  border-color: rgba(244,63,94,.35) !important;
  background: rgba(244,63,94,.05) !important;
  color: rgba(159,18,57,.95) !important;
}

.field input:disabled{
  background: rgba(11,18,32,.04);
  color: rgba(11,18,32,.55);
  cursor:not-allowed;
}
.check input:disabled{ cursor:not-allowed; }


    @media (max-width: 576px) {
        .auth-page {
            padding: 20px !important;
        }
    }



:root{
  --oswald:"Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Oswald usage */
.hero-title,
.option-text strong,
.ghost,
.cta{
  font-family: var(--oswald);
  letter-spacing: .6px;
}

/* Cleaner verification layout */
.verify-block{
  display:grid;
  gap: 14px;
  margin-bottom: 12px;
}

.verify-row{
  display:grid;
  grid-template-columns: 1fr 220px;
  gap: 14px;
  align-items:start;
}

/* Details grid remains 3 columns */
.details-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

/* Center CTA */
.cta-center{
  display:flex;
  justify-content:center;
  margin-top: 18px;
}

.cta{
  min-width: 260px; /* looks like your reference */
  height: 52px;
}

/* optional: make ghost buttons less bulky */
.ghost{
  height: 52px;
  border-radius: 12px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 920px){
  .verify-row{ grid-template-columns: 1fr; }
  .details-grid{ grid-template-columns: 1fr; }
  .cta{ width: 100%; max-width: 360px; }
}
/* Center CTA */
.cta-center{
  grid-column: 1 / -1;              /* full width inside grid */
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/* CTA Button base */
.cta{
  min-width: 280px;
  height: 52px;
  padding: 0 24px;
  border-radius: 12px;

  background: #6c6f73;              /* same grey tone */
  color: #fff;

  border: 1px solid rgba(11,18,32,.12);
  box-shadow: 0 12px 26px rgba(11,18,32,.14);

  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;

  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease;
}

/* Hover (only when enabled) */
.cta:not(:disabled):hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(11,18,32,.18), 0 0 0 4px rgba(18,164,232,.10);
  filter: brightness(1.02);
}

/* Active click */
.cta:not(:disabled):active{
  transform: translateY(0px);
  box-shadow: 0 12px 28px rgba(11,18,32,.16);
}

/* Disabled look */
.cta:disabled{
  opacity: .75;
  cursor: not-allowed;
  box-shadow: 0 8px 18px rgba(11,18,32,.10);
}

/* Mobile */
@media (max-width: 520px){
  .cta{ width: 100%; min-width: 0; }
  .cta-center{ justify-content: stretch; }
  
  .hero-title{
      font-size:42px !important;
  }
}

/* Center CTA */
.cta-center{
  grid-column: 1 / -1;              /* full width inside grid */
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/* CTA Button base */
.cta{
  min-width: 280px;
  height: 52px;
  padding: 0 24px;
  border-radius: 12px;

  background: #6c6f73;              /* same grey tone */
  color: #fff;

  border: 1px solid rgba(11,18,32,.12);
  box-shadow: 0 12px 26px rgba(11,18,32,.14);

  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;

  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease;
}

/* Hover (only when enabled) */
.cta:not(:disabled):hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(11,18,32,.18), 0 0 0 4px rgba(18,164,232,.10);
  filter: brightness(1.02);
}

/* Active click */
.cta:not(:disabled):active{
  transform: translateY(0px);
  box-shadow: 0 12px 28px rgba(11,18,32,.16);
}

/* Disabled look */
.cta:disabled{
  opacity: .75;
  cursor: not-allowed;
  box-shadow: 0 8px 18px rgba(11,18,32,.10);
}

/* Mobile */
@media (max-width: 520px){
  .cta{ width: 100%; min-width: 0; }
  .cta-center{ justify-content: stretch; }
}


/* page center */
.auth-page{
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 100px 20px;
}

/* main container */
.auth-wrap{
  width: min(720px, 100%);
  text-align: center;
}

/* hero */
.hero{ margin-bottom: 18px; }
.hero-title{
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: .5px;
}
.hero-title span{ opacity: .9; }
.hero-sub{
  margin: 0;
  opacity: .75;
}

/* options */
.option-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0 16px;
}

.option-card{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: transform .12s ease, box-shadow .12s ease;
}

.option-card:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

.option-ico{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(13,164,232,.10);
  color: #0da4e8;
  flex: 0 0 auto;
}

.option-text strong{ display:block; font-weight: 800; }
.option-text small{ display:block; opacity:.75; margin-top:2px; }

/* divider */
.divider{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 16px;
  opacity: .7;
}
.divider::before,
.divider::after{
  content:"";
  height: 1px;
  background: rgba(0,0,0,.12);
  flex: 1;
}
.divider span{
  font-size: 12px;
  letter-spacing: .12em;
  white-space: nowrap;
}

/* form slab */
.form-slab{
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

/* grid */
.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
}

.field input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.14);
  outline: none;
}

.field input:focus{
  border-color: rgba(13,164,232,.65);
  box-shadow: 0 0 0 3px rgba(13,164,232,.15);
}

.err{
  display:block;
  min-height: 14px;
  font-size: 12px;
  margin-top: 5px;
  color: #c0392b;
}

/* buttons */
.ghost{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(13,164,232,.08);
  color: #0b1220;
  font-weight: 800;
  cursor: pointer;
}

.cta-center{ display: flex; justify-content: center; }
.cta{
  width: min(360px, 100%);
  padding: 13px 14px;
  border-radius: 14px;
  border: 0;
  background: #0da4e8;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.check{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  opacity: .9;
}

/* full width items inside 2-col grid */
.full{ grid-column: 1 / -1; }

/* footer */
.foot{
  margin: 14px 0 0;
  text-align: center;
  opacity: .8;
}
.foot a{ font-weight: 800; }

/* mobile */
@media (max-width: 640px){
  .option-row{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
  .cta{ width: 100%; }
}
/* ================================
   MOBILE OPTIMIZATION (Signup/Login)
   Add this at the END of signup.css
================================== */

/* prevent any horizontal scroll */
html, body{
  width: 100%;
  overflow-x: hidden;
}

/* page padding + center */
.auth-page{
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 18px 12px; /* mobile safe padding */
}

/* container width */
.auth-wrap{
  width: min(720px, 100%);
}

/* hero spacing */
.hero{
  text-align: center;
  margin-bottom: 14px;
}
.hero-title{
  font-size: clamp(26px, 6.2vw, 38px);
  line-height: 1.05;
  margin: 0 0 6px;
}
.hero-sub{
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  opacity: .8;
}

/* option cards: stack on mobile */
.option-row{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 14px 0 16px;
}
.option-card{
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  text-align: left;
  display: flex;
  gap: 12px;
  align-items: center;
}
.option-ico{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex: 0 0 auto;
}
.option-text strong{ font-size: 14px; }
.option-text small{ font-size: 12px; opacity: .75; }

/* slab */
.form-slab{
  width: 130%;
  border-radius: 16px;
  padding: 16px 14px;
}

/* form: single column on mobile */
.form-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* neutralize "full" helpers on mobile */
.full{
  grid-column: auto;
}

/* inputs */
.field input{
  width: 100%;
  height: 46px;
  padding: 12px 12px;
  border-radius: 12px;
  font-size: 15px;
}

/* error text */
.err{
  min-height: 14px;
  font-size: 12px;
  margin-top: 6px;
}

/* buttons */
.ghost{
  width: 100%;
  height: 46px;
  border-radius: 12px;
  font-weight: 800;
}

/* checkbox wrap */
.check{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.35;
}

/* CTA */
.cta-center{
  display: flex;
  justify-content: center;
}
.cta{
  width: 100%;
  height: 48px;
  border-radius: 14px;
  font-weight: 900;
}

/* footer link */
.foot{
  text-align: center;
  margin: 12px 0 0;
  font-size: 14px;
}

/* toast spacing */
.toast{
  margin-top: 12px;
}

/* Smaller phones */
@media (max-width: 380px){
  .auth-page{ padding: 14px 10px; }
  .form-slab{ padding: 14px 12px; }
  .hero-sub{ font-size: 13px; }
}
@media (max-width: 540px){
.form-slab
{
    width:100%;
}

}
/* Tablet and up: restore 2-column form */
@media (min-width: 641px){
  .option-row{
    grid-template-columns: 1fr 1fr;
  }
  .form-grid{
    grid-template-columns: 1fr 1fr;
  }
  .full{
    grid-column: 1 / -1;
  }
  .cta{
    width: min(360px, 100%);
  }
}

