[hidden] {
  display: none !important;
}

html {
  color-scheme: light;
  background: var(--color-background);
}

body {
  min-width: 320px;
  min-height: 100vh;

  color: var(--color-text);
  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(37, 99, 235, 0.07),
      transparent 30%
    ),
    var(--color-background);

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.5;
}

.container {
  width: min(
    calc(100% - 40px),
    var(--container-width)
  );

  margin-inline: auto;
}

a {
  color: var(--color-primary);
}

a:hover {
  color: var(--color-primary-hover);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 12px 22px;

  border: 1px solid transparent;
  border-radius: var(--radius-small);

  color: #ffffff;
  background: var(--color-primary);

  font-weight: 700;
  cursor: pointer;

  transition:
    background-color 150ms ease,
    transform 150ms ease,
    box-shadow 150ms ease;
}

.button:hover:not(:disabled) {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.footer {
  padding: 32px 0;

  border-top: 1px solid var(--color-border);

  color: var(--color-text-muted);
  background: var(--color-surface);

  text-align: center;
}