:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --focus: 0 0 0 3px rgba(37, 99, 235, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: inherit;
}

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(120, 130, 150, 0.32);
  border-radius: 10px;
  padding: 11px 12px;
  background: #fff;
  color: #111827;
  outline: none;
}

input:focus,
textarea:focus,
select:focus,
button:focus-visible {
  box-shadow: var(--focus);
}

label {
  display: grid;
  gap: 6px;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
