.order__left .img-fluid {
    max-width: 100%;
    height: 100vh;
}

.order__right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.no__overflow {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.form {
    max-width: 360px;
}

.logo {
    margin-bottom: 12px;
    width: 100%;
}

h4 {
    color: #867992;
    text-align: left;
    margin-bottom: 30px;
    letter-spacing: 0.2px;
    line-height: 20px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px 16px;
    margin: 16px 0;
    display: block;
    border: 1px solid #a0a7ce;
    border-left: 4px solid #ed4849;
    border-radius: 0;
    box-sizing: border-box;
    font-size: 16px;
    outline: none;
    transition: box-shadow 0.25s ease-in-out, background-image 0.25s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #a26ed4;
    background: #faf8fd;
    background: #fdfcfe;
    box-shadow: 0 0 0 0.25rem #ebd6ff;
}

::-webkit-input-placeholder {
    color: #a29ca8;
}

:-ms-input-placeholder {
    color: #a29ca8;
}

::placeholder {
    color: #a29ca8;
}

.justify__space_between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 26px 0;
}

input[type="checkbox"],
label {
    margin-right: 4px;
    cursor: pointer;
    outline-color: #b595d4;
}

.login-item .input {
    width: 100%;
    height: 44px;
    padding: 12px 16px;
    margin: 16px 0;
    display: block;
    border: 1px solid #a0a7ce;
    background-color: #fff;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    color: #a0a7ce;
    outline: none;
    transition: box-shadow 0.25s ease-in-out, background-image 0.25s;

}

.login-item .icon {
    position: absolute;
    top: 16px;
    left: 18px;
    pointer-events: none;
    z-index: 2;
}

.remember_me,
.signup {
    color: #867992;
}

.forgot__password {
    color: #551a8b;
    text-align: left;
    outline-color: #b595d4;
}

.forgot__password:active {
    color: #867992;
}

.login__button {
    outline-color: #734e96;
    width: 100%;
    border: none;
    background-color: #283891;
    padding: 13px 17px;
    color: #fff;
    border-radius: 0.25rem;
    font-size: 16px;
    cursor: pointer;
    transition: box-shadow 0.25s ease-in-out, background-color 0.3s;
}

.login__button:hover {
    box-shadow: 0 0 0 0.25rem #dac5ee;
}

.login__button:active {
    background-color: #874dbf;
    box-shadow: 0 0 0 0.35rem #dac5ee;
}

.signup {
    font-size: 14px;
    text-align: center;
    margin-top: 32px;
}

.img {
    height: 100%;
    object-fit: cover;
    max-width: auto;
}

@media only screen and (max-width: 800px) {
    .grid {
        grid-template-columns: auto;
    }

    .order__left {
        order: 2;
        padding: 20px;
    }

    .order__right {
        order: 1;
    }

    .centered {
        align-items: flex-start;
    }

    .no__overflow {
        align-items: flex-start;
    }

    h4 {
        text-align: center;
    }

    .img {
        width: 100vw;
    }
}

@media only screen and (max-height: 600px) {
    .img {
        width: 120%;
    }
}