 /* Login-Box Styling */
        .login-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            max-width: 300px;
            margin: 100px auto;
            padding: 20px;
            background-color: #1e293b;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            color: #fff;
        }
.checkbox-group {
    display: flex;
    align-items: center; /* Vertikal zentrieren */
    gap: 8px; /* Abstand zwischen Checkbox und Text */
    justify-content: left; /* Links ausrichten */
    width: 100%; /* Damit es sich gut einfügt */
	padding: 5px;
	padding-bottom: 16px;
	
}


.checkbox-group label {
    display: inline-block; /* ✅ Sicherstellen, dass der Text neben der Checkbox steht */
}


.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

        .login-box .logo img {
            max-width: 100px;
            margin-bottom: 20px;
        }

        .login-box h1 {
            font-size: 24px;
            
            color: #cc0000; /* Feuerwehr-Rot */
        }
		.login-box h2 {
            font-size: 14px;
          
            color: #cc0000; /* Feuerwehr-Rot */
        }

        .login-box .form-group {
            margin-bottom: 15px;
            width: 85%;
        }

        .login-box .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .login-box .form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }

        .login-box .form-group input:focus {
            border-color: #cc0000;
            outline: none;
        }

        .login-box button {
            width: 85%;
            padding: 10px;
            background-color: #cc0000; /* Feuerwehr-Rot */
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .login-box button:hover {
            background-color: #b30000;
        }

        .login-box .error-message {
            background-color: #dc3545;
            color: white;
            padding: 10px;
            margin-bottom: 15px;
            border-radius: 5px;
            text-align: center;
            display: none;
        }
		.luber {
    font-size: 16px;
    color: #cc0000; /* Feuerwehr-Rot */
    margin-bottom: 0px; /* Kein Abstand nach unten */
}

.lfeuer {
    font-size: 22px;
    color: #fff; /* Feuerwehr-Rot */
	font-weight: bold;
    margin-top: -15px; /* Leicht nach oben verschieben */
	line-height: 2.5; /* Erhöht den Zeilenabstand */
	letter-spacing: 1px;
}