/* 1. Die Überschrift "Abteilung Schlichten" anpassen */
#login h1 {
    font-size: 1.5rem !important;   /* Etwas kleiner als deine 1.75rem für bessere Proportion */
    color: #BE2623 !important;      /* Dein gewünschtes Feuerwehr-Rot */
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
    font-weight: bold !important;
    text-transform: uppercase;      /* Optional: Wirkt bei Feuerwehr-Schriftzügen oft professioneller */
    letter-spacing: 0.5px;
}

/* 2. Login-Logo (falls noch zu wuchtig, hier feinjustieren) */
#login img {
    width: 10em !important; 
    height: auto !important;
    margin: 0 auto 1.5rem auto !important;
    display: block;
    content: url('/branding/img/logo.svg') !important;
}

/* 3. Der Button passend zum neuen Rot-Ton */
#login .button {
    background-color: #BE2623 !important;
    border: none !important;
}

#login .button:hover {
    background-color: #8e1c1a !important; /* Etwas dunkler für den Hover-Effekt */
}