body.auth-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 10%, rgba(96, 157, 56, .12), transparent 30%),
    linear-gradient(135deg, var(--cc-bg) 0%, var(--cc-bg-soft) 100%);
}

.auth-shell-header {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.auth-shell-brand,
.auth-shell-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.auth-shell-brand {
  color: var(--cc-ink);
  text-decoration: none;
  font-weight: 900;
}

.auth-shell-brand img {
  width: 42px;
  height: 42px;
}

.auth-shell-links a {
  color: var(--cc-ink-soft);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.auth-page {
  min-height: calc(100vh - 96px);
  display: grid;
  place-items: center;
  padding: 28px 18px 64px;
}

.auth-card {
  width: min(100%, 520px);
  margin: 0 auto;
  border: 1px solid var(--cc-border);
  background: color-mix(in srgb, var(--cc-panel) 92%, transparent);
  box-shadow: var(--cc-shadow);
}

.auth-row-check,
.auth-check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-input-wrap {
  position: relative;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 18px 0 12px;
  color: var(--cc-muted);
  font-size: 13px;
  font-weight: 800;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: var(--cc-border);
}

.auth-google {
  width: 100%;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
}

.auth-google span[aria-hidden="true"] {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cc-panel);
  color: var(--cc-ink);
  border: 1px solid var(--cc-border);
  font-weight: 900;
}

.auth-privacy-note {
  margin: 12px 0 0;
  color: var(--cc-muted);
  font-size: 13px;
  line-height: 1.7;
}

.auth-eye {
  inset-inline-end: 10px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 560px) {
  .auth-shell-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .auth-page {
    place-items: start center;
  }
}
