/* Import Inter font */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* Global styles */
:root {
  --font-family-base: "Inter", -apple-system, BlinkMacSystemFont, system-ui,
    sans-serif;
}

/* Apply Inter font globally */
html,
body,
button,
input,
select,
textarea {
  font-family: var(--font-family-base);
}

/* Override any Okta specific font-family */
.okta-sign-in-header,
.okta-form-label,
.okta-form-input-field,
.okta-form-title,
.auth-header {
  font-family: var(--font-family-base) !important;
}

/* Ensure custom elements also use Inter */
* {
  font-family: inherit;
}
