/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --background: #f5f7fb;
  --surface: #fff;
  --surface-soft: #f8faff;
  --foreground: #162033;
  --muted: #647087;
  --muted-strong: #465268;
  --border: #dde3ed;
  --border-strong: #cbd4e2;
  --accent: #3157d5;
  --accent-hover: #2448bd;
  --accent-soft: #eef2ff;
  --accent-foreground: #fff;
  --success: #166534;
  --success-soft: #f0fdf4;
  --danger: #b42318;
  --danger-soft: #fff5f4;
  --shadow-sm: 0 1px 2px #0f172a0d;
  --shadow-md: 0 1rem 3rem #0f172a14;
  --shadow-lg: 0 2rem 5rem #0f172a1c;
  --radius-sm: .65rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --content-width: 72rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--background);
  min-height: 100%;
}

body {
  min-height: 100svh;
  color: var(--foreground);
  background: radial-gradient(circle at top left,
      #3157d512,
      transparent 26rem),
    var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Arial, Helvetica, sans-serif;
}

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

button, a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

input, select, textarea {
  color: var(--foreground);
}

::selection {
  color: #fff;
  background: var(--accent);
}

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