.login-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  background:
    radial-gradient(ellipse at top, rgba(0, 232, 122, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at bottom, rgba(0, 232, 122, 0.04) 0%, transparent 60%),
    var(--bg);
}

.login-shell {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.brand .brand-name {
  font-size: 36px;
}
.brand .brand-sub {
  margin-top: 0;
}

.login-card {
  width: 100%;
  padding: 28px;
  background: linear-gradient(180deg, #131825 0%, #0e1219 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.card-title {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  margin: 0 0 4px;
  letter-spacing: 0.03em;
}
.card-sub {
  margin: 0 0 22px;
  font-size: 13px;
  color: var(--muted);
}

.login-footnote {
  text-align: center;
  font-size: 12px;
  color: var(--muted-2);
  margin: 0;
  padding: 0 12px;
}
