/* [project]/apps/web/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --background: #fdf6f9;
  --foreground: #2d1f3d;
  --muted: #7c6b8a;
  --panel: #fff;
  --border: #ede4f0;
  --accent: #b44d8c;
  --accent-light: #f3e0ed;
  --success: #4caf8b;
  --success-light: #e8f8f0;
  --warning: #e8a838;
  --warning-light: #fef6e6;
  --fertile: #7b5ea7;
  --fertile-light: #ece4f5;
  --radius: 12px;
  --shadow: 0 2px 12px #2d1f3d0f;
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
  line-height: 1.5;
}

button, input, textarea, select {
  font: inherit;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=apps_web_app_globals_0xyo3ls.css.map*/