/*Theme Start*/
:root {
--accent-color: #0F94B3!important;
--accent-background-secondary: #EBF4FF !important;
--background-primary: #ffffff !important;
--background-secondary: #f8f9fa !important;
--text-primary: #222222 !important;
--text-secondary: #ffffff !important;
}

html[data-theme="dark"] {
--accent-color: #075c67 !important;
--accent-background-secondary: #282C34 !important;
--background-primary: #1e1e1e !important;
--background-secondary: #282C34 !important;
--text-primary: #e8eaed !important;
--text-secondary: #ffffff !important;
}
#auth-banner, #reset-banner{
    display:none;
}
.auth-banner-container {
    background-image:/*, url('./images/FKK_international.png') */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center center; /* Centers the image both horizontally & vertically */
    background-size: contain; /* Ensures the full image is visible */
    display: flex;
    align-items: center; /* Vertically centers content */
    justify-content: center; /* Horizontally centers content */
    height: 100vh; /* Optional: Makes it fill the viewport height */
}
/*Theme End*/