/* ============================ Pantallas de acceso ======================== */
.auth{display:grid;grid-template-columns:1.05fr 1fr;min-height:100vh}

.auth__brand{
  background:var(--guinda);color:#fff;padding:54px 62px;position:relative;overflow:hidden;
  display:flex;flex-direction:column;
}
.auth__brand::after{
  content:'';position:absolute;right:-160px;bottom:-190px;width:520px;height:520px;
  border-radius:50%;background:rgba(255,255,255,.045);
}
.auth__brand::before{
  content:'';position:absolute;right:60px;top:-140px;width:330px;height:330px;
  border-radius:50%;background:rgba(198,155,102,.14);
}
.auth__logo{width:196px;margin-bottom:auto;position:relative;z-index:2}
.auth__brand h1{
  font-size:41px;line-height:1.13;font-weight:800;margin:0 0 18px;letter-spacing:-.6px;
  position:relative;z-index:2;max-width:15ch;
}
.auth__brand h1 em{font-style:normal;color:#EEC49A}
.auth__brand p{
  font-size:15px;line-height:1.65;color:rgba(255,255,255,.82);margin:0 0 34px;
  max-width:46ch;position:relative;z-index:2;
}
.auth__feats{list-style:none;padding:0;margin:0 0 40px;position:relative;z-index:2}
.auth__feats li{
  display:flex;gap:13px;align-items:flex-start;font-size:14px;
  color:rgba(255,255,255,.9);margin-bottom:14px;line-height:1.5;
}
.auth__feats svg{width:20px;height:20px;flex:0 0 20px;color:#7FD9A6;margin-top:1px}
.auth__seal{
  position:relative;z-index:2;border-top:1px solid rgba(255,255,255,.16);padding-top:20px;
  font-size:12px;color:rgba(255,255,255,.62);line-height:1.6;
}

.auth__side{
  background:#fff;display:flex;align-items:center;justify-content:center;padding:40px 30px;
}
.auth__card{width:100%;max-width:404px}
.auth__card h2{font-size:29px;font-weight:800;margin:0 0 6px;letter-spacing:-.4px}
.auth__card .sub{color:var(--ink-3);font-size:14px;margin:0 0 30px;line-height:1.55}

.inputwrap{position:relative}
.inputwrap .input{padding-left:44px;height:50px}
.inputwrap>svg{
  position:absolute;left:14px;top:50%;transform:translateY(-50%);
  width:19px;height:19px;color:#A5A5AC;pointer-events:none;
}
.inputwrap .peek{
  position:absolute;right:8px;top:50%;transform:translateY(-50%);
  border:0;background:transparent;cursor:pointer;color:#8A8A92;padding:8px;border-radius:7px;
}
.inputwrap .peek:hover{background:var(--bg)}
.inputwrap .peek svg{width:19px;height:19px}

.auth__row{display:flex;align-items:center;justify-content:space-between;margin:6px 0 24px}
.auth__row label{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--ink-2);cursor:pointer}
.auth__row a{font-size:13px;color:var(--guinda);font-weight:600}
.auth__row a:hover{text-decoration:underline}

.auth__err{
  background:#FDECEC;border:1px solid #F5C6C6;color:#A61F1F;border-radius:9px;
  padding:11px 14px;font-size:13px;margin-bottom:16px;display:none;align-items:center;gap:9px;
}
.auth__err.is-on{display:flex}
.auth__err svg{width:17px;height:17px;flex:0 0 17px}

.auth__demo{
  margin-top:26px;border:1px dashed #DCDCE2;border-radius:11px;padding:14px 16px;background:#FBFBFC;
}
.auth__demo b{font-size:11.5px;letter-spacing:.6px;text-transform:uppercase;color:var(--ink-3);display:block;margin-bottom:8px}
.auth__demo div{display:flex;justify-content:space-between;font-size:12.5px;padding:4px 0;color:var(--ink-2)}
.auth__demo code{font-family:ui-monospace,Consolas,monospace;color:var(--guinda);font-weight:600}
.auth__demo button{
  margin-top:9px;width:100%;border:0;background:var(--guinda-tint);color:var(--guinda);
  border-radius:8px;padding:9px;font-size:12.5px;font-weight:600;cursor:pointer;
}
.auth__demo button:hover{background:#F3DDE4}

.auth__foot{margin-top:28px;text-align:center;font-size:11.5px;color:#A9A9B0;line-height:1.7}

/* Código de verificación */
.otp{display:flex;gap:11px;justify-content:space-between;margin:6px 0 22px}
.otp input{
  width:100%;height:60px;text-align:center;font-size:24px;font-weight:700;
  border:1px solid #D9D9DE;border-radius:11px;outline:none;font-family:inherit;
}
.otp input:focus{border-color:var(--guinda);box-shadow:0 0 0 3px rgba(95,26,45,.1)}

.step{display:none}
.step.is-on{display:block;animation:stepIn .28s ease-out}
@keyframes stepIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}

.backlink{
  display:inline-flex;align-items:center;gap:7px;font-size:13px;color:var(--ink-2);
  cursor:pointer;margin-bottom:18px;
}
.backlink:hover{color:var(--guinda)}
.backlink svg{width:16px;height:16px}

@media (max-width:940px){
  .auth{grid-template-columns:1fr}
  .auth__brand{padding:32px 26px;min-height:auto}
  .auth__brand h1{font-size:29px}
  .auth__feats,.auth__seal{display:none}
  .auth__logo{width:150px;margin-bottom:22px}
}
