
.page-login {
    background-color: #DDFFF7;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-login .login-logo {
    position: absolute;
    left: 45%;
    top: 0;
    height: 100%;
    width: 55%;
    background-color: white;
}

.page-login .login-logo img {
    position: absolute;
    min-height: 100%;
    width: auto;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: 20% center;
}

.page-login .section-login-form {
    position: relative;
    left: 0;
    top: 0;
    background-color: transparent;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-login .section-login-form .div-login-form {
    width: 1000px;
    height: 500px;
    box-shadow: rgba(149, 157, 165, 0.7) 0px 8px 24px;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
}

.page-login .section-login-form .div-login-form .div-logo-estorik {
    position: relative;
    left: 0;
    top: 0;
    width: 42%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-login .section-login-form .div-login-form .div-logo-estorik img {
    position: relative;
    width: 45%;
}

.page-login .section-login-form .div-login-form .row {
    position: relative;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.page-login .div-title-login {
    margin-bottom: 50px;
}

.page-login .div-title-login h3{
    color: #F74D0B;
    font-size: 20px;
    font-weight: 600;
}

.page-login .div-input {
    position: relative;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.page-login .div-submit {
    position: relative;
    left: 0;
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.page-login .div-input input {
    border-radius: 5px;
    border: 1px solid #F74D0B;
    background-color: rgba(255, 255, 255, 0.7);
    margin: 10px 0;
    width: 70%;
    height: 50px;
    padding: 5px 50px;
    outline: none !important;
}

.page-login .div-input .forgot_password {
    position: relative;
    width: 70%;
    display: flex;
    justify-content: end;
    margin-right: 20px;
}

.page-login .div-input a:hover {
    color: #F74D0B;
}

.theme-fruit [type=checkbox].filled-in:checked.chk-col-danger+label:after {
    border: 2px solid #F74D0B !important;
    background-color: #F74D0B !important;
}

.page-login .div-submit label {
    color: #5c6975;
}

.theme-fruit .btn-outline.btn-warning,
.theme-fruit .btn-outline.btn-warning:hover {
    border-color: #F74D0B !important;
    color: white !important;
    background-color: #F74D0B !important;
}

.form-control:focus {
    border-color: #F74D0B !important;
}

.page-login .icon-input-email {
    background: url(../../img/user-solid.svg) no-repeat left;
    background-size: 15px;
    background-position-x: 15px;
}

.page-login .icon-input-password {
    background: url(../../img/lock-solid.svg) no-repeat left;
    background-size: 15px;
    background-position-x: 15px;
}

.page-login .text-warning {
    color: #F74D0B !important;
}

@media (max-width: 1100px) {
    .page-login .section-login-form .div-login-form {
        width: 800px;
        height: 400px;
    }

    .page-login .div-input input {
        height: 45px;
    }

    .page-login .icon-input-email,
    .page-login .icon-input-password {
        background-size: 12px;
        background-position-x: 17px;
    }
}


@media (max-width: 850px) {
    .page-login .login-logo {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background-color: white;
    }

    .page-login .section-login-form .div-login-form {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .div-login-form {
        height: auto !important;
        width: auto !important;
        padding: 50px;
    }

    .page-login .div-input input,
    .page-login .div-input a,
    .page-login .section-login-form .div-login-form .row,
    .page-login .section-login-form .div-login-form .div-logo-estorik,
    .page-login .div-submit{
        width: 100%;
    }
}

@media (max-width: 500px) {
    .div-login-form {
        width: 95% !important;
        padding: 25px !important;
    }
}

#eye {
    position: absolute;
    right: 18%;
    top: 28px;
    font-size: 15px;
    color: #000;
    cursor: pointer;
}

@media only screen and (max-width: 850px) {
    #eye {
        right: 4%;
    }
}