/* login-style */
@font-face {
    font-family: Vazirmatn;
    src: url('/assets/Fonts/Vazirmatn-VariableFont_wght.ttf') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    font-family: Vazirmatn;
    margin: 0;
    padding: 0;
}


body {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #000;
}

.makecenter {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-website {
    height: 100vh;
    width: 100vw;
    background-color: #f5f5f5;
    display: flex;
    border: none !important;
    overflow: hidden !important;
    position: relative;
    direction: ltr !important;
}

.login-website-left {
    width: 81%;
    height: 100%;
    border-radius: 0 25px 25px 0;
    background-color: #0f4ea5;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.7)),
        url(/1793121.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;

}


@media (max-width:1360px) {
    .login-website-left {
        width: 80%;
    }
}

@media (max-width:1185px) {
    .login-website-left {
        width: 75%;
    }
}

.login-website-left:before {
    content: "";
    display: block;
    position: absolute;
    opacity: 1;
    transition: 0.3s;
    border-radius: 0;
    background-color: transparent;
    background-image: linear-gradient(225deg, #0fa597 0%, #0F4EA500 70%);
    width: 100%;
    height: 100%;
    border-radius: 0 25px 25px 0;
}

.login-website-left-middle {
    height: 350px;
}

.login-website-left-middle-bottom {
    width: 200px;
    height: 50px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    box-shadow: 0 6px 15px -4px #0a3a4180;
    border-radius: 16px;
    margin: 10px auto 0 auto;
    cursor: pointer;
    z-index: 1000;
    font-weight: 600;
    transition: all 0.2s;
    color: #10859B;

}

.login-website-left-middle-bottom:hover {
    width: 210px;
    transition: all 0.2s;
}

.login-backtowebsite {
    position: absolute;
    width: 110px;
    height: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background-color: #E9EDF5 !important;
    cursor: pointer;
    top: 20px;
    left: 20px;
}

.login-backtowebsite svg {
    height: 12px;
    width: 16px;
}

.login-backtowebsite-phone {
    display: none;
    position: absolute;
    width: 70px;
    height: 30px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background-color: #E9EDF5 !important;
    cursor: pointer;
    top: 15px;
    left: 15px;
}

.img {
    height: 100%;
    width: 100%;
}

.login-website-right {
    position: relative;
}

.login-website-right-login {
    position: absolute;
    left: 86%;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    box-shadow: 0 6px 15px -4px #0a3a4180;
    display: flex;
    width: 325px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 35px 20px;
    border-radius: 30px;
}

.login-row {
    width: 100%;
    text-align: center;
    margin: 6px 0;
    position: relative;
}

.login-row-title {
    font-size: 21px;
    font-weight: 600;
    color: #10859B;
    margin-top: 10px;
    margin-bottom: 20px;
}

.login-row input {
    transition: all 0.2s;
    position: relative;
}

.login-row input[type="tel"]:focus {
    border-color: #0f4ea5;
    outline: none;
    transition: all 0.2s;
}

.login-row input[type="text"]:focus {
    border-color: #0f4ea5 !important;
    outline: none;
    transition: all 0.2s;
}

.login-row input[type="tel"] {
    font-size: 15px;
    font-family: inherit;
    font-weight: 325;
    height: 30px;
    padding: 8px;
    width: 80%;
    background-color: transparent;
    border: none;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.203);
    text-align: right;
    direction: rtl;
    border-radius: 8px;
    color: black;
}

.login-row input[type="text"] {
    font-size: 15px;
    font-family: inherit;
    font-weight: 325;
    height: 30px;
    padding: 8px;
    width: 80%;
    background-color: transparent;
    border: none;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.203);
    text-align: right;
    direction: rtl;
    border-radius: 8px;
    color: black;
}

.login-row input[type="password"] {
    font-size: 15px;
    font-family: inherit;
    font-weight: 325;
    height: 30px;
    padding: 8px;
    width: 80%;
    background-color: transparent;
    border: none;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.203);
    text-align: right;
    direction: rtl;
    border-radius: 8px;
    color: black;
}

.login-button {
    height: 40px;
    background: #10859B;
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    transition: all 0.2s;
    outline: none;
    border: none;
    font-family: inherit;
    font-size: 14px;
    margin: 10px 0 !important;
    cursor: pointer;
}

.login-button:hover {
    background: #0b5e6c;
    transition: all 0.2s;
}

.acount-button {
    height: fit-content;
    background: white;
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.2s;
    outline: none;
    border: none;
    font-family: inherit;
    font-size: 14px;
    margin: 10px 0 !important;
    cursor: pointer;
    border: 1px solid rgb(55 129 124);
    padding: 10px;
}

.swich-account-row {
    display: flex;
    flex-direction: column;
}

.menu-item-line {
    height: 1px;
    background-color: #e6e6e6;
    width: 100%;
    position: relative;
    margin: 5px 0;
}

.user-role {
    font-size: 12px !important;
    color: #9d9c9c !important;
}

.acount-button:hover {
    background: rgb(237, 237, 237);
    transition: all 0.2s;
}

.login-text-1 {
    font-size: 14px;
    display: flex;
    flex-direction: column;
}

.login-text-1 span {
    margin-bottom: 12px !important;
}

.login-special-text1 {
    color: #0F4EA5;
    cursor: pointer;
}

.login-line-parent {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-line {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.203);
    width: 40%;
}

.login-line-middle {
    margin: 0 12px;
    font-size: 14px;
}

.login-google {
    height: 50px;
    width: 50px;
    background-color: #E9EDF5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.login-google:hover {
    background-color: #dde4f1;
    transition: all 0.2s;
    cursor: pointer;
}

.login-bottom-text {
    font-size: 13px;
    width: 94%;
}

.login-special-text2 {
    color: #119e99;
    cursor: pointer;
}

@media (max-width:1100px) {
    .login-website-left-middle {
        display: none;
    }

    .login-website-left-middle-bottom {
        display: none;
    }

    .login-website-left {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 0px;
    }

    .login-website-right-login {
        display: flex;
        left: unset;
        top: unset;
        transform: none;
    }

    .login-button {
        margin: auto;
    }

    .login-google {
        margin: auto;
    }

    .login-website-left:before {
        border-radius: 0px;
    }

    .login-website-left:before {
        display: none;
    }

    .login-website-left {
        background-color: white;
    }

    .login-backtowebsite {
        display: none;
    }

    .login-backtowebsite-phone {
        display: flex;
    }
}

@media (max-width:450px) {
    .login-website-right-login {
        width: 80%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

}

.login-row-infopass {
    font-size: 12px;
    text-align: right;
    margin-top: 5px;
    color: #000000b8;
    margin-right: 25px;
}

.login-row-infopass-top {
    width: 93%;
    display: flex;
    direction: rtl;
    justify-content: space-between;
}

.login-row-infopass-top-right {
    font-size: 14px;
    width: fit-content;
}

.login-row-infopass-top-left {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    margin-left: 10px;
}

.login-row-infopass-top-left-line {
    width: 10px;
    height: 3px;
    border-radius: .75rem 0px 0px .125rem;
    background-color: #b2c2d6;
    transition: all 0.2s;
}

.login-row-infopass {
    color: #777;
}

.pass-ok {
    background: #0a0 !important;
    transition: all 0.2s;
}

.pass-ok-txt {
    color: #0a0 !important;
    margin-right: 30px;
    transition: all 0.2s;
}

.login-form {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-bottom-part {
    position: absolute !important;
    bottom: 10px !important;
    color: white;
    font-size: 14px;
    padding: 2px 6px;
    /* border: 1px solid white; */
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
}

.login-website-left-middle-bottom img {
    height: 20px;
    border-radius: 8px;
    margin: 0 4px;
}

.login-language-change {
    position: absolute;
    background-color: #139e99;
    color: WHITE;
    right: 20px;
    top: 20px;
    padding: 6px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border: none;
}

.login-language-change:hover {
    background-color: #E9EDF5;
    transition: all 0.2s;
    cursor: pointer;
}

.login-language-change span {
    gap: 5px;
    font-size: 14px;
}

.login-bottom-part a {
    text-decoration: none;
    color: white;
}

.showpassbutton {
    position: absolute;
    width: 20px;
    left: 20px;
    top: 15px;
    cursor: pointer;
}

.paddingleftpass {
    padding-left: 30px !important;
}

.login-website-left-middle-parent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.login-backtowebsite svg {
    height: 12px;
}

.login-backtowebsite-phone svg {
    height: 12px;
}

.go-back-button {
    padding: 0.5rem 1rem;
    background-color: transparent;
    border-radius: 8px;
    border: 1px solid rgb(255 167 0 / 24%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.go-back-button:hover {
    background-color: rgb(237, 237, 237);
    transition: all 0.2s;
    cursor: pointer;
}

.code-input-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px auto;
    direction: ltr;
}

.code-input {
    width: 35px;
    height: 35px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
    outline: none;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.1s;
}

.code-input:hover {
    border: 1px solid #949393;
}