/* Target the logo image on the login page */
.login-logo img {
    max-width: 250px; /* Set a maximum width */
    height: auto;     /* Ensure the height scales proportionally */
    margin-bottom: 1rem; /* Add some space below the logo */
}
/* Override blue-colored spans */
span[style*="color: blue"] {
    color: red !important;   /* change to your preferred color */
    font-weight: bold;
}

/* Override green-colored spans */
span[style*="color: green"] {
    color: orange !important; /* change to your preferred color */
    font-weight: bold;
}
/* Make select options text black */
.filtered, 
.filtered option {
    color: black !important;
}
