/* Resize the main logo on the login screen */
#login img {
    content: url('/static/img/logo.svg') !important;
    height: 256px !important; /* Adjust this to your liking */
    width: auto !important;   /* This is crucial to override the default 4em width */
    max-height: none !important;
    max-width: 100% !important; 
    margin-bottom: 2em;
}

/* Resize the logo in the top navigation bar (once logged in) */
header img {
    height: 60px !important;
    width: auto !important;
    max-height: none !important;
}