/* ============================================================
   ACCEDER — AUTH PAGE
   Full-height split layout: brand panel (left) + form (right)
   ============================================================ */

/* ===== WRAP ===== */
.ac-wrap{display:flex;min-height:100vh}

/* ============================================================
   LEFT BRAND PANEL
   ============================================================ */
.ac-side{
  display:none;
  width:420px;flex-shrink:0;
  background:var(--grad);
  position:relative;overflow:hidden;
  flex-direction:column;justify-content:space-between;
  padding:48px 40px;
}

/* Orbs */
.ac-s-ob{position:absolute;border-radius:50%;pointer-events:none;animation:orba 7s ease-in-out infinite alternate}
.ac-s-o1{width:80%;height:80%;top:-30%;left:-30%;background:radial-gradient(circle,rgba(100,228,168,.12),transparent 70%)}
.ac-s-o2{width:70%;height:70%;bottom:-25%;right:-25%;background:radial-gradient(circle,rgba(255,255,255,.06),transparent 70%);animation-delay:3.5s}

/* Logo */
.ac-s-logo{position:relative;z-index:2}

/* Body text */
.ac-s-body{position:relative;z-index:2;margin-top:auto;padding-top:40px}
.ac-s-body h2{
  font-size:clamp(22px,2.2vw,28px);font-weight:700;
  letter-spacing:-1px;line-height:1.2;margin-bottom:12px
}
.ac-s-body p{font-size:13px;color:rgba(255,255,255,.75);line-height:1.7;margin-bottom:32px}

/* Trust stats */
.ac-s-stats{display:flex;flex-direction:column;gap:10px}
.ac-s-st{display:flex;align-items:center;gap:10px;font-size:12px;color:rgba(255,255,255,.85)}
.ac-s-ic{
  width:28px;height:28px;min-width:28px;border-radius:7px;
  background:rgba(255,255,255,.12);
  display:flex;align-items:center;justify-content:center;font-size:13px
}

/* Footer */
.ac-s-foot{
  position:relative;z-index:2;
  font-size:10px;color:rgba(255,255,255,.4);
  margin-top:32px
}
.ac-s-foot a{color:rgba(255,255,255,.55);transition:.2s}
.ac-s-foot a:hover{color:rgba(255,255,255,.9)}

/* ============================================================
   RIGHT FORM PANEL
   ============================================================ */
.ac-main{
  flex:1;display:flex;align-items:center;justify-content:center;
  padding:40px 20px;position:relative;overflow:hidden
}

/* Orbs (subtle, right panel) */
.ac-m-ob{position:absolute;border-radius:50%;pointer-events:none;animation:orba 9s ease-in-out infinite alternate}
.ac-m-o1{width:55vw;height:55vw;max-width:420px;max-height:420px;top:-20%;right:-15%;background:radial-gradient(circle,rgba(100,25,168,.1),transparent 70%)}
.ac-m-o2{width:45vw;height:45vw;max-width:340px;max-height:340px;bottom:-15%;left:-10%;background:radial-gradient(circle,rgba(29,25,114,.14),transparent 70%);animation-delay:4s}

/* Form card */
.ac-box{width:100%;max-width:400px;position:relative;z-index:2}

/* Mobile logo */
.ac-m-logo{display:flex;margin-bottom:36px}

/* ===== HEADER ===== */
.ac-hd{margin-bottom:28px}

.ac-chip{
  display:inline-flex;align-items:center;gap:6px;
  padding:5px 12px;border-radius:50px;
  background:rgba(100,228,168,.08);border:1px solid rgba(100,228,168,.16);
  color:var(--mint);font-size:10px;font-weight:500;font-family:var(--m);
  letter-spacing:.5px;margin-bottom:14px
}
.ac-chip::before{content:'';width:5px;height:5px;border-radius:50%;background:var(--mint);flex-shrink:0}

.ac-hd h1{font-size:clamp(22px,4vw,30px);font-weight:700;letter-spacing:-1px;margin-bottom:6px}
.ac-hd p{font-size:13px;color:var(--muted)}

/* ===== FORM FIELDS ===== */
.ac-fld{margin-bottom:16px}
.ac-fld label{
  display:block;
  font-family:var(--m);font-size:10px;
  letter-spacing:1.2px;text-transform:uppercase;
  color:var(--muted);margin-bottom:7px
}
.ac-fld input{
  width:100%;
  background:rgba(255,255,255,.05);
  border:1px solid var(--bdr);border-radius:10px;
  padding:13px 16px;
  color:var(--white);font-family:var(--f);font-size:14px;
  outline:none;transition:.2s
}
.ac-fld input:focus{
  border-color:var(--mint);
  background:rgba(255,255,255,.08);
  box-shadow:0 0 0 3px rgba(100,228,168,.08)
}
.ac-fld input::placeholder{color:rgba(255,255,255,.22)}

/* Password field with toggle */
.ac-fld-pw{position:relative}
.ac-fld-pw input{padding-right:48px}
.ac-pw-tog{
  position:absolute;right:13px;top:50%;transform:translateY(-50%);
  background:none;border:none;
  color:var(--muted);cursor:pointer;
  padding:5px;transition:.2s;
  display:flex;align-items:center;justify-content:center
}
.ac-pw-tog:hover{color:var(--white)}

/* Forgot link */
.ac-forgot{
  display:block;text-align:right;
  font-size:12px;color:var(--muted);
  margin-top:8px;transition:.2s
}
.ac-forgot:hover{color:var(--mint)}

/* ===== SUBMIT BUTTON ===== */
.ac-submit{
  width:100%;
  display:flex;align-items:center;justify-content:center;gap:8px;
  padding:14px;
  background:var(--mint);color:var(--blue);
  border:none;border-radius:10px;
  font-family:var(--f);font-size:15px;font-weight:700;letter-spacing:-.2px;
  cursor:pointer;transition:.25s;margin-top:8px
}
.ac-submit:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(100,228,168,.32)}
.ac-submit-ic{font-size:16px;transition:transform .2s}
.ac-submit:hover .ac-submit-ic{transform:translateX(3px)}

/* ===== DIVIDER & LINKS ===== */
.ac-div{
  display:flex;align-items:center;gap:12px;
  margin:24px 0;
  color:var(--muted);
}
.ac-div::before,.ac-div::after{content:'';flex:1;height:1px;background:var(--bdr)}
.ac-div span{font-family:var(--m);font-size:10px;letter-spacing:1px;text-transform:uppercase;white-space:nowrap}

.ac-alt{text-align:center;font-size:13px;color:var(--muted);margin-bottom:14px}
.ac-alt a{color:var(--mint);transition:.2s}
.ac-alt a:hover{text-decoration:underline}

.ac-back{
  display:flex;align-items:center;justify-content:center;
  font-size:12px;color:var(--muted);transition:.2s
}
.ac-back:hover{color:var(--white)}

/* ============================================================
   840px — DESKTOP: show brand panel
   ============================================================ */
@media(min-width:840px){
  .ac-side{display:flex}
  .ac-m-logo{display:none}
  .ac-main{padding:60px 40px}
}
