:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172033;
  background: #f5f7fb;
  --page: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #f9fbfd;
  --line: #dfe6ef;
  --line-strong: #cdd7e5;
  --text: #172033;
  --muted: #64748b;
  --faint: #8a98aa;
  --blue: #2563eb;
  --blue-soft: #e8f0ff;
  --green: #15956b;
  --green-soft: #e7f6ef;
  --amber: #b7791f;
  --amber-soft: #fff4da;
  --red: #c24141;
  --red-soft: #fff0f0;
  --shadow: 0 18px 48px rgba(31, 45, 68, 0.09);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}
