

.containerAll {

    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 3rem 0;
}

.auth_main {

    width: 470px;
    height: auto;
    float: right;
    border-radius: 20px;
    background-color: #fff;
    border: solid 1.5px var(--text_color5);
    padding: 1rem 1.5rem 0;
}


.logo_main {

    width: 100%;
    height: auto;
    float: right;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.logo_main img {

    width: 130px;
    height: 80px;
    float: right;
    object-fit: contain;
}

.bottom_contentAll {

    width: 100%;
    height: auto;
    float: right;
    padding: 0.8rem 0 1.5rem;
}

.content_titles {

    width: 100%;
    height: auto;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}
.content_titles .title {

    font-size: 22px;
    color: var(--theme2);
    float: right;
    font-family: 'yekan_Heavy';
    line-height: 38px;
}

.content_titles .welcome {

    float: right;
    font-size: 14.5px;
    font-family: 'yekan_Medium';
    color: var(--text_color3);
}


.BackToHome {

    position: absolute;
    right: 0;
    width: 52px;
    height: 52px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1.5px var(--text_color5);
    transition: var(--tr);
}

.BackToHome svg {

    width: 24px;
    height: 23px;
    float: right;
    fill: var(--theme2);
    transition: var(--tr);
}

.BackToHome:hover {

    background-color: var(--theme);
    border-color: var(--theme);
}
.BackToHome:hover svg {

    fill: #fff;
}

.logInLink {

    width: 100%;
    text-align: center;
    float: right;
    color: var(--text_color3);
    margin: 25px 0;
    font-size: 15px;
}

.logInLink a {

    color: var(--theme);
}
.logInLink a:hover {

    text-decoration: underline;
}

.intsAll {

    width: 100%;
    height: auto;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4px;
}

.int_sec {

    width: 100%;
    height: auto;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 15px;
    position: relative;
}

.input_box {

    width: 100%;
    height: 60px;
    float: right;
    border-radius: 10px;
    border: solid 1.5px var(--text_color11);
    padding: 0 1.1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    transition: var(--tr);
    position: relative;
}

.int_sec input {

    width: 100%;
    height: 60px;
    float: right;
    background: none;
    border: none;
    outline: none;
    color: var(--theme2);
}

.icon_box {

    width: auto;
    height: 100%;
    float: right;
    padding: 1rem 0 1rem 1.050rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.icon_box::after {

    width: 1px;
    height: 50%;
    position: absolute;
    content: "";
    left: 0;
    background-color: var(--text_color11);
    border-radius: 50px;
}

.icon_box svg {

    width: 20px;
    height: 20px;
    float: right;
    fill: var(--theme2);
}

.icon_box.pass {

    cursor: pointer;
}

.input_sec {

    width: calc(100% - 40px);
    height: 100%;
    float: right;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.input_sec input {

    width: 100%;
    height: 100%;
    float: right;
    background-color: transparent;
    border: none;
    outline: none;
    color: var(--theme2);
    padding-left: 2rem;
}

.input_sec label {

    font-size: 13px;
    width: auto;
    height: 24px;
    background-color: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0.5rem;
    position: absolute;
    right: 0;
    top: -12px;
    color: var(--text_color3);
}
.error_text {

    width: 100%;
    text-align: right;
    float: right;
    font-size: 13px;
    color: var(--theme);
    font-family: 'yekan_Medium';
    margin-top: 8px !important;
    padding: 0 0.3rem;
}
.error_text:last-child {

    margin: 0;
}

.int_sec.error .input_box {

    border-color: var(--theme);
}
.int_sec.error .input_sec label {

    color: var(--theme);
}

.input_sec .error_icon {

    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    fill: var(--theme);
    opacity: 0;
    transition: 0.1s ease;
}

.int_sec.error .error_icon {

    opacity: 1;
}



.passwor_strong {

    width: 100%;
    height: 0;
    float: right;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 0 0.2rem;
    overflow: hidden;
    transition: 0.2s ease;
    margin-top: 0;
}
.passwor_strong.active {

    height: 10px;
    overflow: visible;
    margin-top: 14px;
}

.line_pass {

    width: calc(100% / 4 - 10px);
    height: 3px;
    border-radius: 50px;
    background-color: var(--text_color5);
    float: right;
    transition: 0.1s ease;
}
.passwor_strong.type_1 .line_pass:nth-child(1) {

    background-color: var(--red);
} 
.passwor_strong.type_1 .line_pass:nth-child(2) , .passwor_strong.type_1 .line_pass:nth-child(3) , .passwor_strong.type_1 .line_pass:nth-child(4) {

    background-color: var(--text_color5);
} 



.passwor_strong.type_2 .line_pass:nth-child(1) , .passwor_strong.type_2 .line_pass:nth-child(2) {

    background-color: var(--red);
} 

.passwor_strong.type_2 .line_pass:nth-child(3) , .passwor_strong.type_2 .line_pass:nth-child(4) {

    background-color: var(--text_color5);
} 



.passwor_strong.type_3 .line_pass:nth-child(1) , .passwor_strong.type_3 .line_pass:nth-child(2) , .passwor_strong.type_3 .line_pass:nth-child(3)  {

    background-color: var(--orange);
} 

 .passwor_strong.type_3 .line_pass:nth-child(4) {

    background-color: var(--text_color5);
} 


.passwor_strong.type_4 .line_pass:nth-child(1) , .passwor_strong.type_4 .line_pass:nth-child(2) , .passwor_strong.type_4 .line_pass:nth-child(3) ,  .passwor_strong.type_4 .line_pass:nth-child(4) {

    background-color: var(--green);
} 

.SubmitBtn {

    width: 100%;
    height: 65px;
    float: right;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: var(--theme);
    border: none;
    outline: none;
    margin-top: 25px;
    cursor: pointer;
    box-shadow: 0 0 52px -12px var(--theme_opacity4);
    transition: 0.2s ease;
}

.SubmitBtn:hover {

    background-color: var(--theme2);
    box-shadow: none;
}

.SubmitBtn span {

    font-size: 15px;
    font-family: 'yekan_Medium';
    float: right;
    opacity: 1;
    visibility: visible;
}


.loading-spinner {

    width: 30px;
    height: 30px;
    border-top-color: #fff;
    border-bottom-color: #fff;
    opacity: 0;
    visibility: hidden;
}

.SubmitBtn.loading {

    pointer-events: none;
    background-color: var(--theme2);
    box-shadow: none;
}

.SubmitBtn.loading .loading-spinner {

    opacity: 1;
    visibility: visible;
    animation-play-state: running;
}
.SubmitBtn.loading span {

    opacity: 0;
    visibility: hidden;
}

.other_options_logIn {

    width: 100%;
    height: auto;
    float: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.forgetpas {

    float: right;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 13.5px;
    color: var(--theme);
    gap: 5px;
    font-family: 'yekan_Medium';
    transition: 0.2s ease;
}
.forgetpas svg {

    transform: translateY(-0.5px);
    transition: 0.2s ease;
}

.forgetpas:hover {

    color: var(--theme);
    text-decoration: underline;
}

.remember_me {

    width: auto;
    height: auto;
    float: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.remember_me label {

    color: var(--text_color3);
    font-size: 14px;
    float: left;
    user-select: none;
    cursor: pointer;
}
.remember_me input {

    transform: translateY(-1px);
    cursor: pointer;
    accent-color: var(--theme);
}

.confrim_titles {

    margin-bottom: 25px;
}

.confrim_boxs {

    width: 100%;
    height: auto;
    float: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    direction: ltr;
    transition: 0.2s ease;
}
.confrim_boxs.loading {

    opacity: 0.2;
    pointer-events: none;
}

.confrim_boxs input {

    width: calc(100% / 5 - 5px);
    height: 65px;
    float: right;
    border: solid 1.5px var(--text_color5);
    border-radius: 10px;
    text-align: center;
    font-size: 23px;
    color: var(--theme2);
    transition: 0.1s ease;
}

.confrim_boxs input:focus {

    border-color: var(--theme);
    box-shadow: 0 0 52px -12px var(--theme_opacity4);
}

.other_options_confrim {

    width: 100%;
    height: auto;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
}

.SubmitBtn_confrim {

    width: 100%;
    height: 65px;
    float: right;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: var(--text_color5);
    border: none;
    outline: none;
    margin-top: 25px;
    transition: 0.2s ease;
    position: relative;
    overflow: hidden;
}


.SubmitBtn_confrim:not(.timer) {
    
    box-shadow: 0 0 52px -12px var(--theme_opacity4);
    cursor: pointer;
}
.SubmitBtn_confrim:not(.timer):hover {

    box-shadow: none;
}

.SubmitBtn_confrim:not(.timer) .progress {

    transition: 0.2s ease;
}
.SubmitBtn_confrim:not(.timer):hover .progress {

    background-color: var(--theme2);
    box-shadow: none;
}

.SubmitBtn_confrim span {

    font-size: 15px;
    font-family: 'yekan_Medium';
    float: right;
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 5;
}

.progress {

    position: absolute;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--theme);
    transition: 1s linear;
}


@media(max-width: 550px) {

    .auth_main {

        width: 100%;
        border: none;
    }
}