.login-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.login-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    background-color: #ffffff;
}
.login-form {
    width: 50%;
    padding: 40px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }
    .login-image {
        width: 100%;
        height: 20vh;
    }
    .login-form {
        width: 100%;
        padding: 20px;
        height: 60vh;
    }
}