.login-container {
    background-color: #fff;
    height: 100vh;
    display: grid;
    grid-template-columns: 4fr 5fr;
}

.login-image-container > img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.login-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.login-form-container > div {
    width: 50%;
}

.temot-logo-container {
    height: 60px;
    text-align: center;
    margin-bottom: 60px;
}

.temot-logo-container > img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}

.login-form-container form {
    background-color: #d7d7d7;
    border-radius: 10px;
    margin: 10px 0;
}
.login-form-container button {
    background-color: transparent;
    border: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 10px 20px;
}

.login-form-container button div {
   margin-right: 19px;
}


@media screen and (max-width: 799px)  {
    .login-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .login-image-container {
        display: none;
    }

    .login-form-container {
        width: 70%;
    }

    .login-form-container > div {
        width: 100%;
    }

}