/* ================================================================
   PAGE ROUTER
================================================================ */
.page{display:none}
.page.active{display:flex;flex-direction:column;min-height:100vh}

/* ================================================================
   AUTH PAGES
================================================================ */
.auth-shell{
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  position:relative;
  background:var(--page);
}
@media(max-width:800px){.auth-shell{grid-template-columns:1fr}}
.auth-brand{
  background:var(--green);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:48px;
  position:relative;
  overflow:hidden;
}
@media(max-width:800px){.auth-brand{display:none}}
.auth-brand::before{
  content:'';position:absolute;top:-100px;right:-100px;
  width:400px;height:400px;
  background:rgba(255,255,255,.04);border-radius:50%;
}
.auth-brand::after{
  content:'';position:absolute;bottom:-60px;left:-60px;
  width:280px;height:280px;
  background:rgba(255,255,255,.03);border-radius:50%;
}
.brand-logo{display:flex;align-items:center;gap:10px}
.brand-logo-mark{
  width:36px;height:36px;background:rgba(255,255,255,.15);
  border-radius:10px;display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(255,255,255,.2);
}
.brand-logo-text{font-family:'Syne',sans-serif;font-size:18px;font-weight:700;color:white;letter-spacing:-.02em}
.brand-logo-text span{color:rgba(255,255,255,.6)}
.brand-headline{
  font-family:'Syne',sans-serif;font-size:40px;font-weight:800;
  color:white;line-height:1.05;letter-spacing:-.03em;position:relative;z-index:1;
}
.brand-headline em{color:rgba(255,255,255,.5);font-style:normal}
.brand-tagline{font-size:15px;color:rgba(255,255,255,.5);margin-top:16px;max-width:320px;line-height:1.7;position:relative;z-index:1}
.brand-features{display:flex;flex-direction:column;gap:12px;position:relative;z-index:1}
.brand-feat{display:flex;align-items:center;gap:10px;font-size:13px;color:rgba(255,255,255,.7)}
.brand-feat-dot{width:6px;height:6px;background:var(--green-3);border-radius:50%;flex-shrink:0}

.auth-form-wrap{
  display:flex;flex-direction:column;justify-content:center;
  padding:48px;max-width:480px;margin:0 auto;width:100%;
}
.auth-form-title{font-size:28px;font-weight:800;margin-bottom:6px}
.auth-form-sub{font-size:14px;color:var(--ink-70);margin-bottom:36px}
.auth-form-sub a{color:var(--green-2);font-weight:500}

.form-group{margin-bottom:18px}
.form-label{display:block;font-size:12px;font-weight:500;color:var(--ink-70);letter-spacing:.04em;text-transform:uppercase;margin-bottom:6px}
.form-input{
  width:100%;padding:12px 14px;
  background:var(--white);border:1px solid var(--ink-12);
  border-radius:var(--r-sm);font-size:14px;color:var(--ink);
  transition:border-color var(--transition),box-shadow var(--transition);
}
.form-input:focus{border-color:var(--green-2);box-shadow:0 0 0 3px var(--green-bg)}
.form-input::placeholder{color:var(--ink-40)}
.form-input.error{border-color:var(--red)}
.form-hint{font-size:12px;color:var(--red);margin-top:5px;display:none}
.form-hint.show{display:block}

.divider{display:flex;align-items:center;gap:12px;margin:20px 0;color:var(--ink-40);font-size:12px}
.divider::before,.divider::after{content:'';flex:1;height:1px;background:var(--ink-12)}
