/* src/styles.scss */
:root {
  --fit-font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  --fit-color-primary: #2488ff;
  --fit-color-primary-strong: #1e74d9;
  --fit-color-heading: #040f1b;
  --fit-color-heading-secondary: #111827;
  --fit-color-muted: #6b7280;
  --fit-color-page: #f3f4f8;
  --fit-color-surface: #ffffff;
  --fit-color-border: #e5e7eb;
  --fit-color-accent-soft: #eff4fc;
  --fit-radius-md: 12px;
  --fit-radius-lg: 16px;
  --fit-shadow-soft: 0 1px 2px rgb(15 23 42 / 6%);
  --fit-shadow-card: 0 4px 24px rgb(15 23 42 / 6%);
  --fit-shadow-toolbar: 0 1px 0 rgb(15 23 42 / 4%);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--fit-font-family);
  font-size: 16px;
  line-height: 1.5;
  color: var(--fit-color-heading-secondary);
  background: var(--fit-color-page);
  -webkit-font-smoothing: antialiased;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
