.auth-hero {
  max-width: 980px;
  margin: 0 auto 18px;
  padding: 20px 22px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #172554 0%, #1e40af 100%);
  position: relative;
  overflow: hidden;
}

.auth-hero::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -18%;
  width: 460px;
  height: 460px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 999px;
}

.auth-hero__inner {
  position: relative;
  z-index: 1;
}

.auth-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.auth-hero__badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #4ade80;
}

.auth-hero__title {
  margin: 12px 0 6px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.auth-hero__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
}

.auth-page {
  padding: 56px 20px;
}
.auth-shell {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}
.auth-aside {
  border-radius: 16px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(29, 78, 216, 0.04));
  border: 1px solid rgba(37, 99, 235, 0.14);
}
.auth-aside__title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
}
.auth-aside__desc {
  color: #475569;
  margin: 0 0 18px;
  line-height: 1.7;
}
.auth-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.auth-feature__item {
  display: flex;
  gap: 10px;
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 12px;
}
.auth-feature__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2563eb;
  margin-top: 6px;
  flex: 0 0 auto;
}
.auth-feature__text {
  color: #334155;
  font-size: 14px;
  line-height: 1.6;
}
.auth-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  padding: 22px;
}
.auth-card__title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}
.auth-card__subtitle {
  margin: 8px 0 18px;
  color: #64748b;
  font-size: 13px;
}
.auth-field {
  margin-bottom: 14px;
}
.auth-actions {
  margin-top: 16px;
}
.auth-links {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 13px;
}
.auth-links.center {
  justify-content: center;
}
.auth-links a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}
.auth-links a.secondary {
  color: #64748b;
  font-weight: 600;
}
.auth-error {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.06);
  color: #b91c1c;
  font-size: 13px;
}
.code-row {
  display: grid;
  grid-template-columns: 1fr 132px;
  gap: 10px;
}
@media (max-width: 920px) {
  .auth-shell {
    grid-template-columns: 1fr;
  }
}
