:root {
    --bg-color: #0c0b10;
    --one-color: #f9d342;
    --base-font: PeydaWebFaNum;
    --head-font: Gofteh;
}

body {
    font-family: var(--base-font);
    background: var(--bg-color);
    font-size: 14px;
    color: #fff;
}

a {
    text-decoration: none;
    color: var(--one-color);
}

p {
    margin: 0;
    padding: 0;
}

ul,
li,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    width: 100%;
}

/* =========== login form =========== */

.main_login {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}

.main_login .login_form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 450px;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    z-index: 3;
    box-shadow: 0px 10px 15px -10px rgba(0, 0, 0, .06);
}

.main_login .login_form .main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 450px;
    padding: 50px 20px;
    border-radius: 10px;
    background: #232228;
    position: relative;
    z-index: 3;
    box-shadow: 0px 10px 15px -10px rgba(0, 0, 0, .06);
}

.main_login .login_form::before {
    background: #181819;
    content: "";
    width: 95%;
    height: 50%;
    bottom: 4px;
    position: absolute;
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0px 10px 15px -10px rgba(0, 0, 0, .06);
}

.main_login .login_form::after {
    background: #101011;
    content: "";
    width: 90%;
    height: 50%;
    bottom: -10px;
    position: absolute;
    border-radius: 10px;
    z-index: 1;
    box-shadow: 0px 10px 15px -10px rgba(0, 0, 0, .06);
}

.main_login .login_form img {
    width: 270px;
    margin-bottom: 20px;
}

.main_login .login_form form {
    display: flex;
    flex-direction: column;
    width: 70%;
}

.main_login .login_form form input {
    background: #efefef;
    border: none;
    border-radius: 12px;
    padding: 10px;
    margin: 20px 0;
}

.main_login .login_form form button {
    background: var(--one-color);
    border: none;
    border-radius: 12px;
    padding: 10px;
}

.main_login p {
    margin: 20px 0;
}

@media (max-width:600px) {
    .main_login .login_form {
        width: 100%;
    }

    .main_login .login_form .main {
        width: 100%;
    }

    .main_login .login_form::after {
        width: 80%;
    }

    .main_login .login_form::before {
        width: 85%;
    }

    .main_login .login_form form {
        width: 100%;
    }
}

/* =========== panel =========== */

.main_panel {
    display: flex;
    justify-content: space-between;
    align-items: start;
    height: 100vh;
    padding: 30px;
}

.main_panel .side_panel {
    height: 100%;
    width: 20%;
    padding: 20px;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}

.main_panel .contant_panel {
    display: flex;
    width: 79%;
    height: 90%;
    position: relative;
    justify-content: center;
}

.main_panel .contant_panel .main {
    display: flex;
    border-radius: 10px;
    width: 100%;
    background: #232228;
    position: relative;
    z-index: 3;
    box-shadow: 0px 10px 15px -10px rgba(0, 0, 0, .06);
    padding: 20px;
    overflow-x: hidden;
    overflow-y: scroll;
    flex-direction: column;
}

.main_panel .contant_panel::before {
    background: #181819;
    content: "";
    width: 95%;
    height: 50%;
    bottom: -25px;
    position: absolute;
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0px 10px 15px -10px rgba(0, 0, 0, .06);
}

.main_panel .contant_panel::after {
    background: #101011;
    content: "";
    width: 90%;
    height: 50%;
    bottom: -45px;
    position: absolute;
    border-radius: 10px;
    z-index: 1;
    box-shadow: 0px 10px 15px -10px rgba(0, 0, 0, .06);
}

.main_panel .side_panel .logo h3 {
    font-size: 18px;
    text-align: center;
    margin: 10px 0 0 0;
    font-family: var(--head-font);
    color: #f9d342;
}

.main_panel .side_panel .menu {
    width: 100%;
    margin: 20px 0;
}

.main_panel .side_panel .menu ul li a {
    display: flex;
    padding: 10px;
    width: 100%;
    height: 45px;
    color: #eee;
    margin: 10px 0;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: all .3s ease-in-out;
    position: relative;
}

.main_panel .side_panel .menu ul li a.active::before {
    content: "";
    background: var(--one-color);
    width: 3px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 30px;
}

.main_panel .side_panel .menu ul li a i {
    margin-left: 20px;
    transition: all .3s ease-in-out;
}

.main_panel .side_panel .menu ul li a:hover i {
    color: var(--one-color);
}

.main_panel .side_panel .menu ul li a:hover {
    background: #f9d34208;
}

.main_panel .contant_panel .main .up,
.main_panel .contant_panel .main .down {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 150px;
    width: 100%;
    padding: 10px;
}

.main_panel .contant_panel .main .up .contant {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0c0b10;
    border-radius: 10px;
    padding: 10px;
    width: 32%;
    height: 150px;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.main_panel .contant_panel .main .down .contant {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0c0b10;
    border-radius: 10px;
    padding: 10px;
    width: 49%;
    height: 150px;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.main_panel .contant_panel .main .up .contant i,
.main_panel .contant_panel .main .down .contant i {
    position: absolute;
    font-size: 120px;
    color: var(--one-color);
    left: -130px;
    z-index: 0;
    opacity: 0.1;
    transition: .3s all ease-in-out;
}

.main_panel .contant_panel .main .up .contant:hover i,
.main_panel .contant_panel .main .down .contant:hover i {
    left: -60px;
}

.main_panel .contant_panel .main .up .contant .left span,
.main_panel .contant_panel .main .down .contant .left span {
    font-size: 60px;
    margin: 35px;
    font-weight: 900;
}

.main_panel .contant_panel .main .down .contant .left {
    position: relative;
}

.main_panel .contant_panel .main .down .contant .left span {
    font-size: 40px;
}

.main_panel .contant_panel .main .down .contant .left span.toman {
    font-size: 10px;
    position: absolute;
    right: 2px;
    top: -30px;
    color: #f74e4e;
}

.main_panel .contant_panel .main .up .contant .right h3,
.main_panel .contant_panel .main .down .contant .right h3 {
    font-weight: bold;
    color: var(--one-color);
    margin-right: 10px;
}

.main_panel .contant_panel .main .up .contant .right p,
.main_panel .contant_panel .main .down .contant .right p {
    margin-right: 10px;
}

.main_panel .contant_panel .main .up .contant.deactive,
.main_panel .contant_panel .main .down .contant.deactive {
    filter: blur(4px);
    pointer-events: none;
}

header {
    box-shadow: 0 10px 15px -10px rgb(55, 55, 55);
}

header .main_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

header .main_header .logo img {
    width: 150px;
}

header .main_header .menu ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .main_header .menu ul li {
    margin: 0 20px;
}

header .main_header .menu ul li a {
    color: #fff;
    padding: 10px;
    transition: .3s all ease-in-out;
}

header .main_header .menu ul li a:hover,
header .main_header .menu ul li a.active {
    color: var(--one-color);
    transition: .3s all ease-in-out;
}

header .main_header .callto {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .main_header .callto .login {
    background-color: var(--one-color);
    color: #2f2f2f;
    padding: 11px 35px;
    border-radius: 10px;
    font-weight: bold;
    border: 2px solid var(--one-color);
    transition: .3s all ease-in-out;
}

header .main_header .callto .login:hover {
    background: transparent;
    color: var(--one-color);
}

header .main_header .callto .help {
    background-color: #d21b1b;
    border: 2px solid #d21b1b;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    font-size: 25px;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-right: 10px;
    transition: .3s all ease-in-out;
}

header .main_header .callto .help:hover {
    background: transparent;
    color: #d21b1b;
}

.main_footer {
    text-align: center;
    padding: 40px 0;
}

.comingsoon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100dvh;
}

.comingsoon img {
    width: 400px;
    margin: 30px 0;
}

.comingsoon h2 {
    font-size: 60px;
    font-family: var(--head-font);
    color: var(--one-color);
}

.comingsoon p {
    text-align: center;
    font-size: 25px;
}