* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f5f7fb;
  color: #071225;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

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

.form-label {
  display: block;
  margin-bottom: 0.4rem;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field {
  width: 100%;
  border: 1px solid #dbe3ee;
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.82rem 0.95rem;
  color: #071225;
  font-weight: 650;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field:focus {
  border-color: #1d7df2;
  box-shadow: 0 0 0 4px rgba(29, 125, 242, 0.13);
}

.form-field:disabled {
  background: #f1f5f9;
  color: #475569;
}

.search-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98)),
    #fff;
}

.legal-copy {
  white-space: pre-line;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
