

.guest-container > div:first-child {
    background: #fff;
}
.guest-container > div:first-child > div:last-child {
    box-shadow: none;
}
.field-form input {
    border: none;
    box-shadow: none;
    border-radius: 0;
    border-bottom: 1.5px solid #E9E9F0;
    color: #262634;
    font-size: 15px;
}
.field-form input::placeholder {
    color: #262634;
    font-size: 15px;
}
.remember-login {
    display: flex;
    justify-content: space-between;
}
.remember-login span,
.forgot-password {
    color: #707070;
    text-decoration: none;
    font-size: 14px;
}
.button-login-cont {
    margin-top: 70px;
}
.button-login {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    background: transparent linear-gradient(90deg, #FF6422 0%, #EF4946 100%) 0% 0% no-repeat padding-box;
    transition: .2s;
    border: none;
}
.button-login:hover {
    box-shadow: 1px 1px 4px #FF6422;
    border: none;
}

#login-backgound {
    display: none;
}

@media ( min-width: 768px ) {
    .guest-container {
        display: flex;
    }
    .guest-container > div:first-child {
        min-width: 47em;
    }
    #login-backgound {
        display: block;
        background: url(/images/login-backgound.png) no-repeat top center / cover;
        background-color: #FF6422;
        width: 100%;
        margin-top: -40px;
    }
}