.login-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 5px rgb(100 100 150 / 30%);
    height: fit-content;
    background: #fff;
    margin: 0 auto;
}

.login-content {
    display: flex;
    align-items: center;
    gap: 1em;
    flex-direction: column;
    padding: 30px 10px;
    height: fit-content;
}

.login-header {
    width: 100%;
    height: 175px;
    overflow: hidden;
    object-fit: cover; /* maybe contain */
}

.login-header > img {
    width: 100%;
    height: 100%;
}

.login-content > div {
    flex: 1;
    min-width: 300px;
    padding: 0 30px;
    max-width: 350px
}

.login-content > .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-content > .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-content:before {
    content: "";
    border: 1px solid #d3d3d3;
    align-self: stretch;
}

.login-content > div:nth-of-type(1) {
    order: -1;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
}

.input-container:not(:first-of-type) {
    margin-top: 8px;
}

.right > p,
.info > p {
    margin-top: 0;
    font-size: 1.2em;
}

.info:not(:first-of-type) {
    margin-top: 20px;
}

button.login {
    margin-top: 12px;
}

.forgot-password-link {
    display: block;
    width: 100%;
    text-align: right;
}

@media(min-width: 768px) {
    .content-container {
        width: 700px;
    }
    
    .login-content {
        flex-direction: row;
    }

    .login-content > div {
        min-height: 250px;
    }

    .login-header {
        height: 198px;
        width: 100%;
    }
}

@media(min-width: 992px) {
    .image {
        height: 198px;
    }
}

.login-wrapper > .login-header > .client-banner {
    content:url("../img/Move-Kundenportal-Banner.jpg");
}