body {
    line-height: 1;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

h1 {
    font-size: 40px;
}
.order__left {
    padding: 30px;
    border: 5px dotted #fff;
}
.order__left img {
    width: 200px;
}
.order__right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.no__overflow {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.form {
    max-width: 300px;
}

.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: 300px;
    padding: 8px 16px;
    margin: 16px 0;
    display: block;
    background: #fff;
    border: 1px solid #210a0e;
    border-left: 5px solid #210a0e;
    border-radius: 0;
    box-sizing: border-box;
    font-size: 14px;
    outline: none;
    transition: box-shadow 0.25s ease-in-out, background-image 0.25s;
}

::-webkit-input-placeholder {
    color: #a29ca8;
}

:-ms-input-placeholder {
    color: #a29ca8;
}

::placeholder {
    color: #a29ca8;
}

.justify__space_between {
    font-size: 14px;
    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: #210a0e;
    text-align: left;
    outline-color: #210a0e;
}

.forgot__password:active {
    color: #867992;
}

.login__button {
    outline-color: #210a0e;
    width: 100%;
    border: none;
    background-color: #210a0e;
    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 #210a0e4d;
}

.login__button:active {
    background-color: #f89f1d;
    box-shadow: none;
}

.signup {
    font-size: 14px;
    text-align: center;
}

.img {
    height: 100%;
    object-fit: cover;
    max-width: auto;
}
vertical>.btn, .btn-group>.btn {
    font-size: 14px;
}
@media only screen and (max-width: 800px) {
    .grid {
        grid-template-columns: auto;
    }

    .order__left {
        display: none;
    }

    .order__right {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .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%;
    }
    input[type="text"],
    input[type="password"] {
        width: 250px;
    }
}