body {
    font-family: Arial, sans-serif !important;
    background-color: #f0f2f5 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 100vh !important;
}

.container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 20px 20px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 420px;
    margin: 5px;
}

.header {
    background-color: #2f333c;
    color: white;
    text-align: center;
    padding: 20px;
}

.header h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.company-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 5px;
    padding-right: 5px;
    overflow: hidden; /* Hide overflow for animation */
    white-space: nowrap; /* Keep logos in a single row */
}

.company-logo {
    width: 100px;
    height: 50px;
    margin-right: 20px;
}

.company-logo img {
    height: 30px;
}

.group-logo {
    margin-bottom: 10px;
}

.form {
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

/* Highlight border in black on focus */
.form-group input:focus {
    border-color: black;
    border-width: 2px;
    outline: none; /* Removes default blue outline in some browsers */
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #d11800;
    color: white;
}

.btn-primary:hover {
    background-color: #dd4f3c;
}

.btn-link {
    background-color: transparent;
    color: #2f333c;
}

.btn-link:hover {
    text-decoration: underline;
}

.passwort-vergessen:hover{
    text-decoration: underline !important;
}

/* Banner scrolling animation */
@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (min-width: 768px) {
    .container {
        display: flex;
        max-width: 1000px;
    }

    .header {
        width: 40%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .content {
        width: 60%;
    }
}

@media (max-width: 768px) {
    /* Enable scrolling animation for company logos in responsive mode */
    .company-logos {
        display: flex;
        justify-content: center;
    }

    .company-logo {
        flex-shrink: 0;
        margin-right: 15px; /* Space between logos */
    }
}


@media (max-width: 420px) {
    .company-logos {
        display: flex;
        justify-content: center;
    }

    .company-logo {
        flex-shrink: 0;
        margin-right: 15px; /* Space between logos */
        zoom: 0.9;
    }
}