.auth-body{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:32px 18px;
  background:
    radial-gradient(900px 420px at 12% 8%, rgba(120,145,255,.22), transparent 55%),
    radial-gradient(780px 380px at 90% 92%, rgba(168,145,255,.14), transparent 50%),
    linear-gradient(180deg,#eef1fb 0%,#f5f6fc 48%,#f7f8fc 100%);
}
.auth-card{
  width:min(520px,100%);
  background:#fff;
  border:1px solid rgba(226,230,240,.9);
  border-radius:28px;
  box-shadow:0 28px 70px rgba(48,65,109,.12);
  padding:42px 40px 28px;
}
.auth-card .auth-brand{
  margin-bottom:28px;
  gap:14px;
}
.auth-card .auth-brand .brand-mark{
  width:48px;
  height:48px;
  border-width:3.5px;
  border-radius:8px;
}
.auth-card .auth-brand strong{
  font-size:24px;
  letter-spacing:-.9px;
  color:#1a2740;
}
.auth-card .auth-brand strong span{color:var(--blue)}
.auth-card .auth-brand small{
  margin-top:4px;
  font-size:12px;
  color:#8a96ab;
  font-weight:600;
}
.auth-copy{margin-bottom:8px}
.auth-copy .pill{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  background:#edf1ff;
  color:#476df1;
  font-size:12px;
  font-weight:800;
  letter-spacing:.2px;
}
.auth-copy h1{
  margin:18px 0 10px;
  font-size:clamp(30px,4vw,38px);
  letter-spacing:-1.4px;
  line-height:1.1;
  color:#152238;
  font-weight:800;
}
.auth-copy p{
  margin:0 0 26px;
  color:#8a96ab;
  font-size:15px;
  line-height:1.55;
  font-weight:500;
}
.auth-form{
  display:grid;
  gap:16px;
}
.auth-form label{
  display:grid;
  gap:8px;
  margin:0;
  font-size:14px;
  font-weight:750;
  color:#1f2a44;
}
.auth-form label span{display:block}
.auth-label-row{
  display:flex!important;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.auth-label-row a,
.auth-back{
  color:#476df1;
  font-size:12px;
  font-weight:750;
  text-decoration:none;
}
.auth-label-row a:hover,
.auth-back:hover{text-decoration:underline}
.auth-form input{
  width:100%;
  padding:14px 16px;
  border:1.5px solid #dfe5f1;
  border-radius:14px;
  background:#fff;
  color:#152238;
  font-size:15px;
  font-weight:600;
  transition:border-color .15s ease, box-shadow .15s ease;
}
.auth-form input:focus{
  outline:none;
  border-color:#8aa4ff;
  box-shadow:0 0 0 4px rgba(71,109,241,.12);
}
.auth-submit{
  margin-top:6px;
  min-height:54px;
  border:0;
  border-radius:14px;
  background:linear-gradient(180deg,#5b7cff 0%,#476df1 100%);
  color:#fff;
  font-size:16px;
  font-weight:800;
  letter-spacing:-.2px;
  box-shadow:0 12px 24px rgba(71,109,241,.28);
  cursor:pointer;
}
.auth-submit:hover{filter:brightness(1.03)}
.auth-back{
  display:block;
  margin:18px 0 0;
  text-align:center;
}
.auth-powered{
  display:block;
  margin:18px auto 4px;
  text-align:center;
  color:#9aa6bb;
  font-size:13px;
  font-weight:650;
  text-decoration:none;
}
.auth-powered:hover{color:#476df1}
.auth-card .alert{
  margin:0 0 16px;
  padding:12px 14px;
  border-radius:12px;
  font-size:13px;
  font-weight:700;
}
.auth-card .alert.success{
  background:#e6f7ee;
  color:#19784b;
}
@media (max-width:560px){
  .auth-card{padding:28px 22px 22px;border-radius:22px}
  .auth-copy h1{font-size:28px}
}
