/* src/styles.css */
:root {
  --ink: #14213D;
  --ink-2: #2A3B5C;
  --ink-3: #566389;
  --ink-4: #8593B4;
  --stone: #DCE6F4;
  --stone-2: #CBD8EC;
  --stone-3: #B4C5E0;
  --white: #F4F8FD;
  --offwhite: #E7EFF9;
  --blue: #274D96;
  --blue-soft: #DCE6F5;
  --blue-mid: #3E6ABF;
  --blue-deep: #1D3A73;
  --green: #1E7A54;
  --green-soft:#DDEEE6;
  --amber: #B26B08;
  --amber-soft:#F3E9D6;
  --red: #C0392B;
  --red-soft: #F1DEDC;
  --bg: var(--offwhite);
  --surface: var(--white);
  --panel: var(--stone);
  --text: var(--ink);
  --muted: var(--ink-3);
  --light: var(--ink-4);
  --border: var(--stone-2);
  --accent: var(--blue);
  --surface-2: #E4EDF8;
  --surface-3: #D5E2F2;
  --text-soft: #4A5878;
  --text-faint: #7180A0;
  --text-faint2:#95A2BF;
  --track: #D5E2F2;
  --chip-bg: #DCE6F5;
  --chip-fg: #274D96;
  --chip-bd: #B4C5E0;
  --accent-2: #3E6ABF;
  --ok-bg: #DDEEE6;
  --ok-fg: #1E7A54;
  --ok-bg2: #E4F1EA;
  --ok-fg2: #14603F;
  --warn-bg: #F3E9D6;
  --warn-fg: #8A5206;
  --warn-bg2:#F7EFDD;
  --warn-bd: #E4CFA4;
  --err-bg: #F1DEDC;
  --err-fg: #C0392B;
  --err-fg2: #8E271C;
  --err-bd: #E4BDB8;
  --info-bg: #DCE6F5;
  --info-fg: #274D96;
  --info-bd: #B4C5E0;
  --brand: var(--blue);
  --brand-deep: var(--blue-deep);
  --gradient-primary:
    linear-gradient(
      135deg,
      #274D96,
      #3E6ABF);
  --font:
    "Outfit",
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  --shadow-sm: 0 1px 2px rgba(20,33,61,.06);
  --shadow: 0 1px 3px rgba(20,33,61,.10);
  --shadow-md: 0 4px 12px rgba(20,33,61,.10);
  --shadow-lg: 0 12px 24px rgba(20,33,61,.14);
}
body.dark {
  --ink: #F4F4F5;
  --ink-2: #D4D4D8;
  --ink-3: #A1A1AA;
  --ink-4: #71717A;
  --stone: #27272A;
  --stone-2: #3F3F46;
  --stone-3: #52525B;
  --white: #18181B;
  --offwhite: #09090B;
  --blue-soft: #0E1E3A;
  --green-soft: #064E3B;
  --amber-soft: #422006;
  --red-soft: #450A0A;
  --bg: var(--offwhite);
  --surface: var(--white);
  --panel: var(--stone);
  --text: var(--ink);
  --muted: var(--ink-3);
  --border: var(--stone-2);
  --surface-2: #1F1F23;
  --surface-3: #27272A;
  --text-soft: #A1A1AA;
  --text-faint: #71717A;
  --text-faint2:#52525B;
  --track: #27272A;
  --chip-bg: #0E1E3A;
  --chip-fg: #BFD6FE;
  --chip-bd: #1E3A8A;
  --accent-2: #60A5FA;
  --ok-bg: #052E20;
  --ok-fg: #34D399;
  --ok-bg2: #052E20;
  --ok-fg2: #6EE7B7;
  --warn-bg: #2B2008;
  --warn-fg: #FCD34D;
  --warn-bg2:#3B2A08;
  --warn-bd: #6B4E16;
  --err-bg: #2A0E0E;
  --err-fg: #F87171;
  --err-fg2: #FCA5A5;
  --err-bd: #7F1D1D;
  --info-bg: #0E1E33;
  --info-fg: #93C5FD;
  --info-bd: #1E3A5F;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  transition: background .3s, color .3s;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 1600px) {
  body {
    zoom: 0.95;
  }
}
@media (max-width: 1440px) {
  body {
    zoom: 0.90;
  }
}
@media (max-width: 1366px) {
  body {
    zoom: 0.85;
  }
}
@media (max-width: 1280px) {
  body {
    zoom: 0.80;
  }
}
@media (max-width: 1200px) {
  body {
    zoom: 1;
  }
}
a {
  color: var(--accent);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 8px;
  font: 600 13px/1 var(--font);
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all .2s;
}
.btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}
.btn-p {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-p:hover:not(:disabled) {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.btn-d {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}
.btn-d:hover:not(:disabled) {
  border-color: var(--ink-4);
}
.btn-r {
  color: var(--red);
  border: 1px solid transparent;
  background: transparent;
}
.btn-r:hover:not(:disabled) {
  background: var(--red-soft);
}
.input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: 500 14px var(--font);
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border .2s;
}
.input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 24px;
}
.label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.fg {
  margin-bottom: 14px;
}
.err {
  color: var(--red);
  font-size: 12px;
  margin-top: 6px;
}
.muted {
  color: var(--muted);
}
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  z-index: 9999;
  animation: slideUp .3s;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pw-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.pw-wrap .input {
  flex: 1;
  padding-right: 42px;
}
.pw-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--muted);
  padding: 4px;
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
}
.pw-eye:hover {
  color: var(--text);
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.fg:last-child {
  margin-bottom: 0;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 8px;
  border: none;
  font: 600 13px var(--font);
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
  gap: 6px;
}
.btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}
.btn-p {
  background: var(--gradient-primary);
  color: #fff;
}
.btn-p:hover:not(:disabled) {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.btn-d {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-d:hover:not(:disabled) {
  background: var(--stone);
}
.btn-r {
  background: none;
  color: var(--red, #DC2626);
  border: 1px solid transparent;
}
.btn-r:hover:not(:disabled) {
  background: #FEF2F2;
  border-color: #DC2626;
}
.input {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: 500 13px var(--font);
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border .2s, box-shadow .2s;
  width: 100%;
  box-sizing: border-box;
}
.input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
.input::placeholder {
  color: var(--muted);
}
.label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--muted);
}
.err {
  font-size: 12px;
  color: var(--red, #DC2626);
  margin-top: 4px;
}
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--offwhite, #FAFAFA);
  padding: 24px;
}
.auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.auth-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.auth-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gradient-primary);
  color: #fff;
  font: 800 13px var(--font);
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-logo-text {
  font-weight: 700;
  font-size: 18px;
}
.auth-h1 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}
.auth-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.auth-foot {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
}
.auth-link {
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  font: 600 12px var(--font);
}
.auth-link:hover {
  text-decoration: underline;
}

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