.auth-body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(800px 600px at 10% 10%, rgba(15, 118, 110, 0.2), transparent 55%),
    radial-gradient(800px 600px at 90% 5%, rgba(245, 158, 11, 0.18), transparent 60%),
    repeating-linear-gradient(
      120deg,
      rgba(11, 18, 32, 0.04),
      rgba(11, 18, 32, 0.04) 1px,
      transparent 1px,
      transparent 20px
    ),
    #f7f8f9;
}

.auth-shell { width: min(420px, 92vw); }

.auth-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 48px;
  min-height: 38px;
}

.auth-brand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #ffffff url("/static/icons/icon-192.png") center/cover no-repeat;
  border: 1px solid rgba(11, 143, 91, 0.2);
  box-shadow: 0 10px 18px rgba(15, 118, 110, 0.22);
}

.auth-title { font-size: 20px; font-weight: 900; color: #0b1220; }

.auth-subtitle { font-size: 13px; color: rgba(11, 18, 32, 0.7); }

.auth-form { display: flex; flex-direction: column; gap: 12px; }

.auth-oauth { display: flex; flex-direction: column; gap: 10px; }

.auth-google-btn { text-align: center; }

.auth-divider {
  position: relative;
  text-align: center;
  font-size: 11px;
  color: rgba(11, 18, 32, 0.5);
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: rgba(11, 18, 32, 0.12);
}

.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

.auth-divider span { background: rgba(255, 255, 255, 0.94); padding: 0 8px; }

.auth-label { font-size: 12px; font-weight: 700; color: rgba(11, 18, 32, 0.6); }

.auth-row { display: flex; flex-direction: column; gap: 8px; }

.auth-error { font-size: 12px; color: #b91c1c; min-height: 16px; }

.auth-footnote { font-size: 12px; color: rgba(11, 18, 32, 0.6); }

.auth-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: rgba(11, 18, 32, 0.65);
  line-height: 1.4;
}

.auth-consent input {
  margin-top: 2px;
}

.auth-consent a {
  color: #0b8f5b;
  text-decoration: underline;
}
