/* woo-login/global.css — page-level base wiring.
   Imports: font face (Nationale @ 400/500/700) + 17 color tokens (light/dark).
   Sets body bg/text color via tokens. */

@import url('../../_shared/fonts.css');
@import url('../../_shared/tokens.css');
@import url('../../_shared/icons.css');

/* Box-sizing reset */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  background-color: rgb(var(--color-body));
  color: rgb(var(--color-text));
  font-family: 'Nationale', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Visually-hidden helper for sr-only labels */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
