/* src/styles.css */
:root {
  --color-primary: #4a9680;
  --color-primary-hover: #285649;
  --color-secondary: #b4271e;
  --color-tertiary: #285649;
  --color-success: #4a9680;
  --color-error: #b4271e;
  --color-surface: #d2e5df;
  --color-surface-tint: #edf5f3;
  --color-background: #f1f2f3;
  --color-border: #bebfc0;
  --color-text: #333333;
  --color-text-secondary: #5f5f60;
  --color-text-muted: #7f8080;
  --disclaimer-bg: #f8eae2;
  --disclaimer-border: #df7b3e;
  --disclaimer-text: #a04d18;
  --font-heading:
    "Work Sans",
    -apple-system,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  --font-body:
    "Inter",
    -apple-system,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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