/* Layered imports for development (prefer bundles for production) */
@import url("/css/Identity/modern/core/00_tokens.css");
@import url("/css/Identity/modern/core/01_theme.light.css");
@import url("/css/Identity/modern/core/01_theme.dark.css");
@import url("/css/Identity/modern/core/02_base.css");
/* Components */
@import url("/css/Identity/modern/components/login.css");

.brand-chip .logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}
/* Default = light */
.brand-chip .logo-dark {
    display: none;
}

.brand-chip .logo-light {
    display: block;
}

/* When dark theme is active on <body> */
body.theme-dark .brand-chip .logo-dark {
    display: block;
}

body.theme-dark .brand-chip .logo-light {
    display: none;
}