@import "fonts.css";
@import "checkBox.css";
@import "hrb_alert.css";

html, body {
    padding: 30px 0 0 0;
    margin: 0;
    font-size: 14px;
    outline: none;
    -webkit-outline: none;
    min-width: 300px;
    font-family: Vazir;
    direction: rtl;
    background: url(../img/bg.jpg);
}

* {
    outline: none;
}

a {
    text-decoration: none;
    color: #616161;
}

    a:hover {
        color: #9592c5;
    }

button, input, select, textarea {
    font-family: Vazir;
    direction: rtl;
}

.content_login {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #04a76a;
    transition: all 1s cubic-bezier(1, -0.37, 0, 1.35);
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 450px;
    margin: auto;
    transition-delay: 4s;
    background: transparent;
    padding-bottom: 10px;
}

    .content_login .box_inputs {
        position: relative;
        width: calc(100% - 20px);
        display: flex;
        flex-direction: column;
        margin: 10px auto 5px;
        border-radius: 50px;
        box-shadow: 0 0 8px -5px #000;
    }
        /*.content_login .box_inputs:nth-child(2) {
    transition-delay: 1.2s;
}
.content_login .box_inputs:nth-child(3) {
    transition-delay: 1.8s;
}*/
        .content_login .box_inputs.description {
            border-radius: 0 !important;
            box-shadow: none !important;
            height: auto;
            min-height: 45px;
        }

        .content_login .box_inputs:nth-child(2) p {
            position: relative;
            width: 100%;
            text-align: center;
            color: #6d6d6d;
            transition: all 1s;
            transform: scale(1);
            transition-delay: 1.2s;
        }

    .content_login.active .box_inputs:nth-child(2) p {
    }

    .content_login .box_inputs i {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 45px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        transition: all 1s;
    }

    .content_login .box_inputs label {
        position: absolute;
        height: 45px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        font-size: 14px;
        font-weight: bold;
        padding-right: 0;
        color: #ffffff;
        transition: all 1s;
        pointer-events: none;
        z-index: 5;
        border-radius: 0px 50px 50px 0px;
        background: #4fb3b9;
        padding: 0 30px;
        min-width: 62px;
    }

    .content_login .box_inputs input {
        height: 45px;
        border: none;
        background: transparent;
        border-radius: 50px;
        color: #008888;
        padding-right: 0px;
        z-index: 1;
        outline: none;
        direction: ltr;
        text-align: left;
        padding-left: 35px;
        font-family:Arial;
        font-size: 16px;
        padding-top: 8px;
    }



        .content_login .box_inputs input.fill {
            background: #fff;
        }

    .content_login:before {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        content: '';
        background: #fff;
        box-shadow: 0 0 20px -12px #000;
        border-radius: 8px;
    }

    .content_login h1 {
        font-size: 20px;
        margin: 10px 0 10px;
        color: #008888;
        width: 100%;
        text-align: center;
        transition-delay: 0.4s;
        transform: scale(1);
    }

    .content_login.active h1 {
        transition-delay: 0.4s;
        transform: scale(1);
    }

    .content_login h1:before {
        position: absolute;
        bottom: -10px;
        width: calc(100% - 20px);
        height: 1px;
        content: "";
        background: #008888;
        margin: auto;
        left: 0;
        right: 0;
    }

.login_icon {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 150px;
    height: 150px;
    z-index: 11;
    margin: auto;
    font-size: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #008888;
    background: #ffffff;
    border-radius: 100%;
    overflow: hidden;
    font-size: 60px;
    box-shadow: 0 0 10px -5px #000;
    position: relative;
    top: -30px;
    bottom: 0 !important;
}

    .login_icon.stop.userProf {
        background: #ffffff;
        border-radius: 100%;
        overflow: hidden;
        font-size: 60px;
        box-shadow: 0 0 10px -5px #000;
    }

    .login_icon.ok:before {
        transition: all 1s cubic-bezier(0.69, 1.09, 0, 0.48);
        transform: scale(0);
    }

.user_avatar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: no-repeat center / 100%;
    transition: all 1s cubic-bezier(0.69, 1.09, 0, 0.48);
    transform: scale(0);
    border-radius: 100%;
    opacity: 0;
}

.login_icon.ok .user_avatar {
    transform: scale(0.95);
    opacity: 1;
}

.box_remember {
    position: relative;
    width: calc(100% - 40px);
    margin: 10px auto 0;
    transition: all 1s;
}

.box_link {
    position: relative;
    margin: 10px auto 0;
    width: calc(100% - 40px);
    transition: all 1s;
    transition-delay: 3s;
}

a.forget_pass {
    position: relative;
    width: calc(100% - 40px);
    height: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-right: 35px;
    color: #008888;
    /* font-weight: bold; */
}

    a.forget_pass:focus {
        color: #6315a2;
    }

    a.forget_pass i {
        position: absolute;
        right: 0;
        width: 35px;
        height: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
    }

.bottom_botton {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    transition: all 1s cubic-bezier(1, -0.37, 0, 1.35);
}

button.btnLogin, button.FPDialogBtn {
    position: relative;
    width: 150px;
    height: 45px;
    border-radius: 50px;
    border: none;
    font-weight: normal;
    font-size: 16px;
    color: #ffffff;
    background: #4fb3b9;
    letter-spacing: 0px;
    transition: all 0.5s;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

button.disabled:hover {
    background: #ababab !important;
    cursor: not-allowed;
}

button.disabled {
    background-color: #ababab !important;
}

.content_login.active button.btnLogin:focus {
    background: #6315a2;
}

.content_login.active button.btnLogin:hover {
    color: #ffffff;
    background: #2d44b9;
}

.PoweredBy {
    position: absolute;
    top: calc(100% + 10px);
    transition: all 1s cubic-bezier(0.13, 1.07, 0.07, 1.03);
}

.content_login.active .PoweredBy {
    transform: translateY(0px);
    opacity: 1;
}

.moreBoxLogin {
    position: relative;
    width: calc(100% - 0px);
    margin: 0 auto -10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*display: none;*/
}

.FPDialogFormTitle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 88%;
    height: 40px;
    padding: 5px;
    font-weight: 600;
    border-bottom: 1px solid #008888;
    margin: auto;
    color: #008888;
    position: relative;
}

.FPDialog {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9;
    display: none;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.FPDialogFormTitle i.fal.fa-times {
    position: absolute;
    left: 2px;
    cursor: pointer;
}

.showFPDialog {
    display: flex
}

.FPDialog .FPDialogForm {
    width: 350px;
    min-height: 171px;
    height: auto;
    background: white;
    border-radius: 5px;
}

.login_icon.fal.fa-user.ok.stop.userProf {
    position: relative;
    top: -30px;
    bottom: 0 !important;
}

.grecaptcha-badge {
    opacity: 0 !important;
    pointer-events: none !important;
}

@-webkit-keyframes loading {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}

@keyframes loading {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}

@media only screen and (max-width: 480px) {
    /**/
}
