@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;600;700&display=swap";

/* src/styles.scss */
:root {
  --thd: #ff671f;
  --thd-soft: #fb9557;
  --text-main: #4a4a4a;
  --text-muted: #6c757d;
  --line-soft: #f0f0f0;
  --bg-workspace: #f7f7f5;
  --success: #85bd45;
  --warning: #ffce00;
  --danger: #fc1717;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  overflow: hidden;
}
body {
  margin: 0;
  min-height: 100%;
  font-family:
    "Open Sans",
    "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(
      circle at 96% 8%,
      rgba(255, 103, 31, 0.18),
      transparent 16%),
    radial-gradient(
      circle at 2% 100%,
      rgba(251, 149, 87, 0.1),
      transparent 20%),
    var(--bg-workspace);
}
input,
select,
button {
  font: inherit;
}

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