:root {
    --ptt-title: #ffffff;
    --input-card: rgba(255, 255, 255, 0.07);
    --input-bg: transparent;
    --input-color: #ffffff;
}

.card{
    border:none !important;
}

body {
    background-image: linear-gradient(#3d7c44, #1c1c1c);
    background-color: #1c1c1c;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none !important; /* Safari */
    -moz-user-select: none !important; /* Firefox */
    -ms-user-select: none !important; /* Internet Explorer/Edge */
    user-select: none !important; /* Standard */
    outline: none !important;
}

* {
    box-sizing: border-box !important;
    -webkit-user-select: none !important; /* Safari */
    -moz-user-select: none !important; /* Firefox */
    -ms-user-select: none !important; /* Internet Explorer/Edge */
    user-select: none !important; /* Standard */
    outline: none !important;
}

*:focus {
    outline: none !important;
}

@font-face {
    font-family: vazir;
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../../fonts/vazir.woff2") format("woff2");
}

@font-face {
    font-family: inter_bold;
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../../fonts/inter-bold.woff2") format("woff2");
}

@font-face {
    font-family: inter_regular;
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../../fonts/inter-regular.woff2") format("woff2");
}

@font-face {
    font-family: inter_thin;
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../../fonts/inter-thin.woff2") format("woff2");
}

.display_none_force {
    display: none !important;
}

.display_none {
    display: none;
}

.display_flex {
    display: flex;
}


.main_box {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login_box {
    position: relative;
    width: 400px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}

.login_box .title {
    font-size: 30px;
    font-weight: bold;
    color: var(--ptt-title);
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    font-family: inter_bold, serif;
}

.login_box .input_card {
    position: relative;
    width: 100%;
    padding: 17px 10px;
    border-radius: 10px;
    background-color: var(--input-card);
    margin-bottom: 15px;
}


.login_box .input_card input {
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    padding-left: 50px;
    font-size: 15px;
    background-color: var(--input-bg);
    color: var(--ptt-title);
    font-family: inter_regular, serif;
}

.login_box .input_card .icon {
    position: absolute;
    width: 30px;
    height: 30px;
    left: 15px;
    top: 12px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.7;
}

.login_box .input_card .icon_user {
    background-image: url("../../images/index/username.png");
}

.login_box .input_card .icon_pass {
    background-image: url("../../images/index/password.png");
}

.login_box .login_button {
    position: relative;
    width: 100%;
    height: 60px;
    border-radius: 10px;
    background-color: rgb(112 227 226 / 62%);
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    cursor: pointer;
    transition: 0.2s;
}

.login_box .login_button:hover {
    background-color: rgba(50, 152, 151, 0.62);
}

.login_box .login_button .caption {
    font-size: 20px;
    color: white;
    font-family: inter_regular, serif;
}

.login_box .login_button .icon {
    width: 45px;
    height: 45px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("../../images/index/login.png");
}


