/* login.css - isolado, sem negrito, responsivo */
:root{
  --bg1:#0b1220;
  --bg2:#0b1b3a;
  --card:#ffffff;
  --text:#0f172a;
  --muted:rgba(15,23,42,.62);
  --line:rgba(15,23,42,.10);
  --primary:#2563eb;
  --danger:#ef4444;
  --radius:18px;
  --shadow:0 20px 60px rgba(2,6,23,.25);
}

.stage-auth, .stage-auth *{ box-sizing:border-box; }
.stage-auth{ margin:0; padding:0; min-height:100vh; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; font-weight:400; }
.stage-auth b, .stage-auth strong{ font-weight:400; }

/* Layout: apenas o card (igual ao print) */
.stage-auth{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 26px 14px;
  background:
    radial-gradient(900px 420px at 18% 12%, rgba(37,99,235,.30), transparent 60%),
    radial-gradient(900px 520px at 82% 10%, rgba(34,197,94,.16), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
}

/* coluna esquerda removida */
.stage-auth__left{ display:none; }

.stage-auth__brand{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 16px;
  border-radius:16px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
}

.stage-auth__logo{
  width:110px; height:52px;
  border-radius:14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.stage-auth__logo img{ width:92%; height:92%; object-fit:contain; display:block; }

.stage-auth__title{ font-size:22px; letter-spacing:.2px; }
.stage-auth__sub{ font-size:13px; opacity:.82; margin-top:2px; }

.stage-auth__bullets{
  list-style:none; padding:0; margin:6px 0 0;
  display:flex; flex-direction:column; gap:10px;
  max-width:560px;
}
.stage-auth__bullets li{ display:flex; gap:10px; line-height:1.45; }
.stage-auth__dot{
  width:10px; height:10px; border-radius:999px;
  margin-top:5px; background: rgba(255,255,255,.78);
  flex:0 0 auto;
}

.stage-auth__leftfoot{
  margin-top:auto;
  font-size:12px;
  opacity:.70;
}

.stage-auth__right{ width:100%; display:flex; align-items:center; justify-content:center; }

.stage-auth__card{
  width:100%;
  max-width:460px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.40);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  overflow:hidden;
}

.stage-auth__cardhead{
  padding:18px 18px 12px;
  border-bottom: 1px solid rgba(15,23,42,.07);
}
.stage-auth__cardhead h1{
  margin:0;
  font-size:22px;
  color:var(--text);
  font-weight:400;
}
.stage-auth__cardhead p{
  margin:6px 0 0;
  font-size:13px;
  color:var(--muted);
}

.stage-auth__body{ padding:16px 18px 18px; }

.stage-auth__alert{
  border-radius:14px;
  padding:10px 12px;
  font-size:13px;
  margin-bottom:12px;
}
.stage-auth__alert--error{
  background: rgba(239,68,68,.10);
  border: 1px solid rgba(239,68,68,.22);
  color:#991b1b;
}

.stage-auth__field{ display:flex; flex-direction:column; gap:6px; margin-bottom:12px; }
.stage-auth__label{ font-size:13px; color: rgba(15,23,42,.72); }

.stage-auth__control{
  display:flex; align-items:center; gap:10px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.96);
  padding:11px 12px;
}
.stage-auth__control:focus-within{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}

.stage-auth__icon{
  width:18px; height:18px; color: rgba(15,23,42,.55);
  flex: 0 0 auto;
}
.stage-auth__icon svg{ width:18px; height:18px; display:block; }

.stage-auth__input{
  width:100%;
  border:0; outline:0;
  background:transparent;
  font-size:14px;
  color: var(--text);
  font-weight:400;
}

.stage-auth__toggle{
  border:0;
  background: transparent;
  padding:6px;
  border-radius:10px;
  cursor:pointer;
  color: rgba(15,23,42,.55);
}
.stage-auth__toggle:hover{ background: rgba(15,23,42,.06); }

.stage-auth__row{
  display:flex; align-items:center; justify-content:space-between;
  margin: 4px 2px 12px;
  font-size:12.5px;
  color: rgba(15,23,42,.55);
}
.stage-auth__row a{ color: var(--primary); text-decoration:none; }
.stage-auth__row a:hover{ text-decoration:underline; }

.stage-auth__btn{
  width:100%;
  border:0;
  border-radius: 14px;
  padding:12px 14px;
  background: var(--primary);
  color:#fff;
  cursor:pointer;
  font-size:14px;
  font-weight:400;
}
.stage-auth__btn:hover{ filter: brightness(.97); }

.stage-auth__mini{
  margin-top:10px;
  font-size:12px;
  color: rgba(15,23,42,.50);
  text-align:center;
}

/* Mobile: já é 1 coluna */
@media (max-width: 980px){
  .stage-auth{ padding: 18px 12px; }
}
