html, body {
    height: 100%;
    margin: 0;
}

.login-split {
    display: flex;
    min-height: 100vh;
}

.login-split__form {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #fff;
}

.login-split__image {
    width: 50%;
    background: url('/img/bg.jpg') center center / cover no-repeat;
}

@media (max-width: 768px) {
    .login-split {
        flex-direction: column;
    }

    .login-split__form {
        width: 100%;
    }

    .login-split__image {
        width: 100%;
        min-height: 220px;
    }
}
