.login-split-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85vh;
    padding: 40px 0;
    margin-top: 50px; /* Abstand für fixierten Header */
    overflow-y: auto;
}

.split-left, .split-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: white;
}

.split-left {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    width: 750px;          /* Feste Größe für besseres Matching mit dem Formular */
    height: auto;
    display: flex;
    justify-content: center;
}

/* Stelle sicher, dass das Form eine ähnliche Größe wie das Bild bekommt */
.split-right {
    flex-direction: column;
    text-align: center;
    width: 600px;
    height: 800px;
    padding: 40px 32px;
    color: white;
}

/* Heading zentrieren */
.split-right h1, .split-left h1 {
    text-align: center;
    width: 100%;
    font-size: 4rem;
    color: white;
    margin-bottom: 30px;
}

.input-group {
    width: 100%;
}

.input-group input {
    width: 100%;
    padding: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 16px;
    font-size: 16px;
}

.btn-login {
    margin-top: 12px;
    width: 200px ;
    padding: 14px;
    background-color: #9f2c2c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 26px;
    cursor: pointer;


}

.btn-login:hover {
    background-color: #800000;
}

.register-link {
    margin-top: 18px;
    text-align: center;

}

.forgot-password {
    text-align: center;
    margin-bottom: 10px;
}
a
{
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 900px) {
    .login-split-container {
        flex-direction: column;
        padding: 14px 0;
    }
    .split-left, .split-right {
        width: 100%;
        max-width: 320px;
        padding: 20px;
    }
    .logo-container img, .split-right {
        width: 180px;
        max-width: 95vw;
        padding: 18px 10px;
    }
}
