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

/* src/styles.scss */
:root {
  --navy:#16265c;
  --navy-dark:#0d1838;
  --blue:#4f76e8;
  --soft:#e9eefc;
  --bg:#f7f8fb;
  --ink:#161a23;
  --muted:#7a8295;
  --line:#e4e7ee;
  --shadow:0 4px 18px rgba(30,38,59,.055);
  font-family:
    "Inter",
    system-ui,
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
}
button,
input,
select,
textarea {
  font-family: inherit;
}
a {
  text-decoration: none;
}

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