.auth-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(1100px 550px at 15% -10%, #d6f3e9 0%, rgba(214,243,233,0) 60%),
    radial-gradient(900px 500px at 110% 10%, #e4f7f1 0%, rgba(228,247,241,0) 55%),
    var(--bg);
  padding: 20px;
}

.auth-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.auth-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(20, 30, 25, 0.04), 0 20px 50px -20px rgba(14, 60, 46, 0.18);
  padding: 36px 34px 30px;
  width: 100%;
  max-width: 380px;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.auth-brand .brand-mark {
  width: 38px;
  height: 38px;
  font-size: 14px;
}

.auth-brand-text {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  color: var(--text);
}

.auth-title {
  font-size: 19px;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.auth-subtitle {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0 0 26px 0;
  line-height: 1.45;
}

.auth-submit {
  width: 100%;
  padding: 10px 14px;
  font-size: 13.5px;
  margin-top: 4px;
}

#login-form .error-box {
  margin: -4px 0 14px 0;
}

.auth-footnote {
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
}
