/* Splatter — sign-up / sign-in page */
.auth{min-height:100vh;display:grid;grid-template-columns:1.05fr .95fr}

/* left: brand panel */
.auth-brand{position:relative;overflow:hidden;border-right:1px solid var(--line);
  display:flex;flex-direction:column;justify-content:space-between;padding:44px 56px}
.auth-brand::before{content:'';position:absolute;inset:0;z-index:0;
  background:url('assets/render-bananas.png') center/cover no-repeat}
.auth-brand::after{content:'';position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,rgba(8,9,12,.72),rgba(8,9,12,.55) 38%,rgba(8,9,12,.92));}
.auth-brand>*{position:relative;z-index:2}
.auth-brand .logo{display:flex;align-items:center;gap:11px;font-weight:600;font-size:19px}
.auth-brand .logo img{width:32px;height:32px}
.auth-quote{max-width:30ch}
.auth-quote .tag{font-family:var(--mono);font-size:12px;letter-spacing:2px;text-transform:uppercase;
  color:var(--cyan);margin-bottom:18px}
.auth-quote h2{font-size:36px;line-height:1.12;letter-spacing:-.8px;font-weight:600}
.auth-quote p{color:var(--txt-1);font-size:16px;margin-top:16px}
.auth-foot{display:flex;gap:22px;font-family:var(--mono);font-size:12px;color:var(--txt-2)}
.auth-foot span{display:flex;align-items:center;gap:8px}
.auth-foot .k{width:6px;height:6px;border-radius:50%;background:#34d399}

/* right: form panel */
.auth-form{display:flex;align-items:center;justify-content:center;padding:48px 40px;position:relative}
.auth-form .topback{position:absolute;top:30px;left:40px}
.auth-form .topback a{color:var(--txt-2);font-size:13.5px;display:inline-flex;align-items:center;gap:7px}
.auth-form .topback a:hover{color:var(--txt)}
.auth-card{width:100%;max-width:400px}
.auth-card .eyebrow{display:inline-flex;align-items:center;gap:9px;font-family:var(--mono);font-size:11.5px;
  letter-spacing:1.5px;text-transform:uppercase;color:var(--txt-1);
  background:rgba(255,255,255,.04);border:1px solid var(--line);border-radius:100px;padding:6px 14px;margin-bottom:22px}
.auth-card .eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--cyan);box-shadow:0 0 8px var(--cyan)}
.auth-card h1{font-size:32px;letter-spacing:-.6px;font-weight:600;line-height:1.12;max-width:none;text-align:left;margin:0}
.auth-card .lead{color:var(--txt-1);font-size:15px;margin-top:10px;margin-bottom:30px}

.field-group{display:flex;flex-direction:column;gap:16px}
.fld label{display:block;font-size:13px;color:var(--txt-1);margin-bottom:8px;font-weight:600}
.fld .inp{position:relative}
.fld input{width:100%;background:var(--bg-2);border:1px solid var(--line-2);border-radius:11px;
  padding:13px 14px;color:var(--txt);font-family:var(--ui);font-size:15px;outline:none;transition:.15s}
.fld input::placeholder{color:var(--txt-3)}
.fld input:focus{border-color:var(--blue);box-shadow:0 0 0 3px rgba(106,140,245,.18);background:var(--bg-3)}
.fld .reveal{position:absolute;right:12px;top:50%;transform:translateY(-50%);color:var(--txt-2);cursor:pointer;
  width:20px;height:20px;display:grid;place-items:center}
.fld .reveal:hover{color:var(--txt)}
.fld .reveal svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:1.7}
.fld .hint{font-size:12px;color:var(--txt-3);margin-top:7px;font-family:var(--mono)}

/* strength meter */
.strength{display:flex;gap:5px;margin-top:9px}
.strength i{flex:1;height:4px;border-radius:3px;background:var(--bg-3)}
.strength i.on{background:var(--grad)}

.auth-submit{width:100%;justify-content:center;margin-top:26px;padding:14px;font-size:15.5px}
.terms{font-size:12.5px;color:var(--txt-2);margin-top:16px;line-height:1.5;text-align:center}
.terms a{color:var(--txt-1);text-decoration:underline;text-underline-offset:2px}

.divider{display:flex;align-items:center;gap:14px;margin:26px 0;color:var(--txt-3);font-size:12px;font-family:var(--mono)}
.divider::before,.divider::after{content:'';flex:1;height:1px;background:var(--line)}

.swap{text-align:center;font-size:14px;color:var(--txt-2);margin-top:26px}
.swap a{color:var(--blue);font-weight:600}
.swap a:hover{text-decoration:underline}

/* waitlist confirmation note */
.note{display:flex;gap:12px;align-items:flex-start;background:var(--grad-soft);border:1px solid var(--line);
  border-radius:12px;padding:14px 16px;margin-bottom:26px}
.note .ic{width:22px;height:22px;flex:none;border-radius:7px;background:rgba(8,9,12,.4);display:grid;place-items:center}
.note .ic svg{width:13px;height:13px;stroke:var(--cyan);fill:none;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round}
.note p{font-size:13px;color:var(--txt-1);line-height:1.5}

/* form result message */
.auth-msg{margin-top:16px;padding:11px 14px;border-radius:10px;font-size:13.5px;line-height:1.45;border:1px solid var(--line)}
.auth-msg.err{background:rgba(244,63,94,.10);border-color:rgba(244,63,94,.35);color:#fda4af}
.auth-msg.ok{background:rgba(52,211,153,.10);border-color:rgba(52,211,153,.35);color:#6ee7b7}

@media(max-width:920px){
  .auth{grid-template-columns:1fr}
  .auth-brand{display:none}
}
