:root {
  --lbm-worker-bg: #f4efe6;
  --lbm-worker-ink: #171310;
  --lbm-worker-muted: rgba(23, 19, 16, 0.68);
  --lbm-worker-accent: #cf5c36;
  --lbm-worker-deep: #102d33;
  --lbm-worker-cream: #fffaf2;
  --lbm-worker-line: rgba(23, 19, 16, 0.1);
}

body.lbm-worker-body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--lbm-worker-ink);
  background:
    radial-gradient(circle at top left, rgba(207, 92, 54, 0.16), transparent 32%),
    radial-gradient(circle at bottom right, rgba(16, 45, 51, 0.18), transparent 28%),
    linear-gradient(180deg, #f8f4ed 0%, #f1e8d8 100%);
}

.lbm-auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 2rem;
  padding: 2rem;
  box-sizing: border-box;
}

.lbm-auth-side,
.lbm-auth-card {
  border-radius: 2rem;
}

.lbm-auth-side {
  padding: clamp(2rem, 6vw, 5rem);
  background:
    radial-gradient(circle at top right, rgba(255, 250, 242, 0.22), transparent 0 30%),
    linear-gradient(135deg, rgba(16, 45, 51, 0.98), rgba(11, 31, 36, 0.96));
  color: var(--lbm-worker-cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lbm-auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
}

.lbm-auth-brand strong {
  display: block;
}

.lbm-auth-brand small {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 250, 242, 0.68);
}

.lbm-auth-kicker,
.lbm-auth-label {
  margin: 0 0 1rem;
  color: var(--lbm-worker-accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.lbm-auth-side h1,
.lbm-auth-card h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.lbm-auth-side h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.lbm-auth-copy {
  max-width: 34rem;
  color: rgba(255, 250, 242, 0.78);
  line-height: 1.7;
  font-size: 1.05rem;
}

.lbm-auth-points {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.lbm-auth-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 250, 242, 0.78);
}

.lbm-auth-points li::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--lbm-worker-accent);
  box-shadow: 0 0 0 6px rgba(207, 92, 54, 0.14);
}

.lbm-auth-card {
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 250, 242, 0.84);
  border: 1px solid var(--lbm-worker-line);
  box-shadow: 0 24px 70px rgba(16, 45, 51, 0.08);
  align-self: center;
}

.lbm-auth-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.lbm-auth-form {
  display: grid;
  gap: 1rem;
}

.lbm-auth-form label {
  display: grid;
  gap: 0.48rem;
}

.lbm-auth-form span {
  font-size: 0.92rem;
  color: var(--lbm-worker-muted);
}

.lbm-auth-form input {
  min-height: 3.2rem;
  padding: 0 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(23, 19, 16, 0.12);
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  color: inherit;
}

.lbm-auth-form input:focus {
  outline: none;
  border-color: rgba(207, 92, 54, 0.55);
  box-shadow: 0 0 0 4px rgba(207, 92, 54, 0.12);
}

.lbm-auth-check {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.7rem;
}

.lbm-auth-check input {
  min-height: auto;
  width: 1rem;
  height: 1rem;
  padding: 0;
}

.lbm-auth-button {
  min-height: 3.35rem;
  border: 0;
  border-radius: 999px;
  background: var(--lbm-worker-ink);
  color: var(--lbm-worker-cream);
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease;
}

.lbm-auth-button:hover {
  transform: translateY(-2px);
}

.lbm-auth-foot {
  margin: 1rem 0 0;
  color: var(--lbm-worker-muted);
}

.lbm-auth-foot a {
  color: var(--lbm-worker-ink);
}

.lbm-auth-notice {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(207, 92, 54, 0.12);
  color: var(--lbm-worker-ink);
}

@media (max-width: 920px) {
  .lbm-auth-shell {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .lbm-auth-side {
    min-height: 340px;
  }

  .lbm-auth-side h1 {
    max-width: 12ch;
  }
}
