.example-shell,
.example-shell * {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(44, 212, 179, 0.18), transparent 30rem),
    radial-gradient(circle at 82% 16%, rgba(139, 92, 246, 0.14), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), transparent 260px),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

button,
input {
  font: inherit;
}

.example-shell {
  display: grid;
  min-height: 100vh;
  width: min(100% - 28px, 900px);
  margin: 0 auto;
  place-items: center;
  padding: 32px 0;
}

.example-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 380px);
  gap: 28px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.example-card h1 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.example-mark {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
}

.example-card p:not(.eyebrow) {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.6;
}

.login-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(21, 26, 34, 0.95), rgba(13, 18, 26, 0.94)),
    rgba(16, 21, 29, 0.96);
  box-shadow: var(--shadow);
}

.login-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
}

.login-form input {
  height: 48px;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  outline: none;
  background: rgba(10, 14, 20, 0.55);
  color: var(--text);
}

.login-form input:focus {
  border-color: var(--accent);
}

.login-form > button {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #32dec3);
  color: #f8fffd;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 820px) {
  .example-card {
    grid-template-columns: 1fr;
  }
}
