/* ------------------------------------------------------------------
   dkwin LOCAL-only UI legibility fix (served at http://localhost:8081/)
   Loaded last in index.html <head> so it overrides the built theme.

   Fixes white-on-(light) unreadable text on the login/register screens:

   1) --textW is used by the login top-right link (.right) but is NEVER
      defined anywhere in the build -> the link inherits an unusable color.
      Point it at the theme's dark primary text.

   2) The login/register heading title & subtitle hardcode `color:#fff`,
      but the heading background is the LIGHT-yellow main gradient
      (--main_gradient-color: linear-gradient(90deg,#F5CC2C,#F2CA33)),
      so white text is effectively invisible. Force the theme's dark
      primary text (#001534) for legibility.

   3) The register top-right link (.right) uses --text_color_L4 (#FFF),
      i.e. white text on the light nav -> unreadable. Scope-override it.

   To revert: delete this file and remove the <link> to it in index.html.
   ------------------------------------------------------------------ */

:root {
    --textW: var(--text_color_L1, #001534);
}

.login__container-heading__title,
.login__container-heading__subTitle,
.resgister__C-heading__title,
.resgister__C-heading__subTitle {
    color: var(--text_color_L1, #001534) !important;
}

.resgister__C .right,
.login__container .right {
    color: var(--text_color_L1, #001534) !important;
}
