@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --background: #ffffff;
  --foreground: #313131;
  --primary: #497BFD;
  --primary-hover: #3a6ae0;
  --primary-foreground: #ffffff;
  --border: #c8c8c8;
  --border-focus: #497BFD;
  --muted: #606060;
  --destructive: #e60f56;
  --radius-field: 16px;
  --radius-btn: 9999px;
  --eq-font: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html, body {
  font-family: var(--eq-font);
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
