html{
    overflow: hidden !important;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    direction: ltr;
    cursor: pointer;
    overflow: hidden !important;
}
p {
    margin: 0;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
header , footer{ display: none !important;}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
body{
    background: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: fanum-yekan-heavy;
    height:100vh;
}
#wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    height:100vh;
}
.main__container{
    width: 370px;
}
.contant__main--start{
    position: relative;
    padding: var(--margin);
    border-radius: var(--border-radius_1);
    box-shadow: var(--box-shadow-1);
    border: var(--border-3);
}
.header--stick__logo{
    display: flex;
    justify-content: center;
}
.header--stick__logo svg {
    position: absolute;
    left: 15px;
    top: 15px;
}
.stick__logo{
    object-fit: contain;
    border-radius: 100%;
    position: relative;
    border: 8px solid var(--primary_3);
    margin: var(--margin) 0;
    width: 38%;
}

.text--login{
    font-size: var(--h1);
    font-weight: 600;
    margin-bottom: var(--margin-2);
}
.text--username{
    margin-bottom: var(--margin-3);
}
.username--stick{
    color: #727272;
}
.input--username__main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    
}
.username--input , 
.password--input ,
.repassword--input {
    direction: ltr;
    font-size: 20px !important;
    height: 50px;
    width: 85%;
    padding: 0.8rem !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    margin:0;
}

.account-signin .username--input, 
.account-signin .password--input,
.account-signin .repassword--input {
    direction: ltr;
    width: 100%;
}

.login__digi{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: var(--margin);
    background: var(--button_1);
    color: var(--button_hover_text_1);
    border-radius: var(--border-radius_1);
    border: none;
}
.login--click{
    color: var(--button_hover_text_1);
    border: none;
}
.text--footer{
    margin-top: var(--margin);
}
.text__footer--end{
    font-size: 0.8em !important;
    line-height: 2;
    text-align: left;
    color: #727272;
    margin-bottom: 1.5rem;
}
.fieldset-login, .fieldset-register , .fieldset-reset-password {
    position: relative;
    display: grid;
    grid-auto-flow: column;
    justify-content: center;
    column-gap: 12px;
    border-radius: 6px;
    overflow: hidden;
    will-change: transform;
    padding: 6px;
}

.fieldset-login::before, .fieldset-register::before ,.fieldset-reset-password::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform: translateX(100%)
}

.boxvalidation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 42px;
    border-radius: 6px;
    overflow: hidden;
    will-change: transform
}

.boxvalidation:focus-within {
    box-shadow: 0 0 6px 1px hsla(240, 54%, 61%, .2), 0 0 0 2px hsla(174, 65%, 41%, .827)
}

.boxvalidation::after, .boxvalidation::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 6px;
    overflow: hidden
}

.boxvalidation::before {
    background: #f3f3fb;
    z-index: 1;
    transition: background-color 450ms cubic-bezier(.25, .01, .25, 1)
}

.boxvalidation::after {
    transform: translateY(100%);
    background-color: #6b6b6b;
    opacity: 0;
    z-index: 10;
    transition: transform 450ms cubic-bezier(.25, .01, .25, 1), opacity 450ms cubic-bezier(.25, .01, .25, 1), background-color 450ms cubic-bezier(.25, .01, .25, 1)
}

.field {
    position: relative;
    border: 0 !important;
    outline: 0 !important;
    font-size: 25.21px !important;
    line-height: 42px !important;
    color: #333 !important;
    background-color: transparent !important;
    text-align: center;
    z-index: 100;
}

.field::placeholder {
    color: #cbcbef
}

.error_code {
    border: 1px solid red !important;
}
#error_password , #error_email{
    color: red;
    text-align: left;
    width: 100%;
    height: 25px;
    font-size: 12px;
    margin-left: 29px;
}
.error {
    width: 100%;
}
.success_code {
    border: 1px solid rgb(9, 185, 0) !important;
}

.disabled_btn {
    background: var(--bs-secondary-bg);
}

.form-group {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 5px;
}
.showhide {
    position: absolute;
    left: 40px;
    top: 15px;
}

.d-none {
    display: none;
}
.forgotten {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 0 15px 0;
}

.auth_loading {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    height: 100%;
    background: #73737354;
    display: none;
}

.auth_loading.loading {
    display:block;
}