/* src/styles.scss */
:root {
  --page-bg: #f3efe5;
  --surface: rgba(255, 252, 247, 0.92);
  --surface-strong: #fffdf8;
  --ink: #17202a;
  --muted: #5f6b76;
  --line: rgba(23, 32, 42, 0.08);
  --accent: #c4681f;
  --accent-strong: #8f4310;
  --accent-soft: rgba(196, 104, 31, 0.14);
  --shadow: 0 24px 60px rgba(53, 41, 23, 0.15);
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
  font-family:
    "Segoe UI",
    Tahoma,
    Geneva,
    Verdana,
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      circle at top left,
      rgba(196, 104, 31, 0.18),
      transparent 28%),
    radial-gradient(
      circle at 85% 15%,
      rgba(24, 120, 105, 0.12),
      transparent 22%),
    linear-gradient(
      135deg,
      #f7f1e4 0%,
      #efe7d8 52%,
      #f8f4ed 100%);
}
body {
  min-height: 100vh;
}
button,
input {
  font: inherit;
}

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