/* src/styles.css */
:root {
  --bg: #0b1220;
  --text: #e8eefc;
  --muted: #a7b4d6;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --primary: #8fb3ff;
  --primary-2: #6f9dfc;
  --ring: rgba(143, 179, 255, 0.33);
  --danger: #ffb3b3;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --field-h: 48px;
  --transition: 160ms ease;
}
[data-theme=light] {
  --bg: #f5f6f8;
  --text: #1a1d24;
  --muted: #5c6370;
  --surface: #ffffff;
  --surface-strong: rgba(0, 0, 0, 0.04);
  --primary: #2563eb;
  --primary-2: #1d4ed8;
  --ring: rgba(37, 99, 235, 0.25);
  --danger: #dc2626;
  --border: rgba(0, 0, 0, 0.1);
  --border-strong: rgba(0, 0, 0, 0.15);
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
html,
body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
}
* {
  box-sizing: border-box;
}
button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: none !important;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
select option,
select optgroup {
  background: var(--bg);
  color: var(--text);
}
.btn.primary,
button.btn.primary {
  border: none !important;
  box-shadow: none !important;
  background-image: none !important;
}
.btn.secondary,
button.btn.secondary {
  box-shadow: none !important;
  background-image: none !important;
}
a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  color: var(--primary-2);
}

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