/* ==========================================================================
   CaseDesk — Login page only.

   Login.cshtml is an MVC Razor Page rendered outside the Blazor host, so it
   never loads app.css and has to supply its own document-level resets. The
   auth layout itself lives in auth.css, which both auth pages share.

   Load order on Login.cshtml: tabler -> tabler-icons -> casedesk-tokens -> auth -> login
   ========================================================================== */

html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: var(--cd-bg);
    font-family: var(--cd-font-sans);
    color: var(--cd-text);
    -webkit-font-smoothing: antialiased;
}
