/* UNSA FONT START */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap");
body {
  font-family: "Manrope", "Segoe UI", Arial, sans-serif !important;
  background: var(--unsa-bg);
  color: var(--unsa-text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, input, select, textarea {
  font-family: inherit !important;
}
:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.55);
  outline-offset: 2px;
}
/* UNSA FONT END */

/* UNSA PALETTE START */
:root {
  --unsa-primary: #009ee0;
  --unsa-primary-dark: #007fb8;
  --unsa-bg: #009ee0;
  --unsa-ink: #0b1b2b;
  --unsa-text: #ffffff;
  --unsa-surface: rgba(255, 255, 255, 0.92);
  --unsa-border: rgba(11, 27, 43, 0.12);
  --unsa-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
/* UNSA PALETTE END */

html,
body {
  background: var(--unsa-bg) !important;
}

a {
  color: var(--unsa-text);
}
