* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
}

:root {
    --green_col: rgba(111, 166, 20, 1);
    --font-size: var(--rootfont);
    --noto: "Noto Sans", sans-serif;
    --pos_abs: absolute;
    --pos_rel: relative;
    --w100: 100%;
    --fw500: 500;
    --fw600: 600;
}

/* html{
    font-size: 62.5%;
} */

.app {
    display: unset !important;
}

.container {
    max-width: unset !important;
    padding: unset !important;
    margin: unset !important;
}

.mt1 {
    margin-top: 1rem;
}

.mt15 {
    margin-top: 1.5rem;
}

.mt35 {
    margin-top: 3.5rem;
}

.cursor_pointer {
    cursor: pointer;
}

.w100p {
    width: 100%;
}

.flex-container {
    display: flex;
    height: 100vh;
}

.flex-container .auth_left_slide {
    background: #EDF1E0;
    width: 80%;
    display: flex;
    align-items: center;
}

.flex-container .auth_left_slide img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: clamp(31.25rem, 15.5357rem + 24.5536vw, 45rem);
    margin: 0 10%;
    width: 100%;
    height: 100vh;
}

.flex-container .auth_right_slide {
    width: 20%;
}

.logo_flex_spac_bet {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 3rem;

}

.logo_flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_cont_flex {
    z-index: 1;
    position: var(--pos_rel);
}

.pos_rel {
    position: var(--pos_rel);
}

.pos_abs {
    position: var(--pos_abs);
    width: var(--w100);
    top: 0;
}

.logo_wrapper .logo_wrapper_img {
    max-width: 16rem;
}

.btn_wrapper_cont {
    font-family: var(--noto);
    font-weight: var(--fw500);
}

.btn_wrapper .cont_btn_wrapper {
    padding: 8px 20px;
    background-color: #000;
    color: #fff;
    border-radius: 5rem;
    font-family: var(--noto);
    font-weight: var(--fw500);
    font-size: 16px;
    border: 1px solid transparent;
}


.btn_wrapper .cont_btn_wrapper:hover {
    border: 1px solid var(--green_col);
    background-color: #fff;
    color: #000;
    transition: 0.1s ease-in-out;
}

.btn_wrapper {
    gap: 0.5rem;
}

.form_sec_root {
    width: 33%;
    background-color: #fff;
    padding: 3.5rem 3rem;
    box-shadow: 0 4px 20px 0 rgb(221 221 221);
    border-radius: 12px;
}

.form_sec_root.pos_abs {
    position: var(--pos_abs);
    top: 18%;
    left: 63%;
}

.form_sec_root.pos_abs .form_cont_align {
    width: var(--w100);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.form_input_align,
.flex_col_g {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.form_input_align .forget_pass_align p {
    color: var(--green_col);
    font-size: clamp(0.9rem, 0.6679rem + 0.7143vw, 1.125rem);
    font-family: var(--noto);
    font-weight: var(--fw500);

}

.form_cont_align .form_sec_cont {
    margin-bottom: 1.5rem;
}

.form_cont_align .form_sec_cont h4 {
    font-family: var(--noto);
    font-size: clamp(1.8rem, 1.6559rem + 0.4434vw, 2.188rem);
    font-weight: var(--fw600);
}

.forget_pass_align {
    text-align: end;
}

.form_lgn_btn {
    background-color: rgba(45, 45, 45, 1);
    padding: 0.688rem;
    border-radius: 50px;
    color: #fff;
    font-family: var(--noto);
    font-weight: var(--fw500);
    width: 100%;
    border: unset;
    font-size: clamp(0.8rem, 0.5714rem + 0.3571vw, 1rem);
}

.form_or_stick_flex {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form_or_stick .form_or_stick_para {
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--w100);
    gap: 0.6rem;
    font-size: 16px;
}

.form_or_stick .form_or_stick_para::after,
.form_or_stick .form_or_stick_para::before {
    content: " ";
    width: var(--w100);
    height: 1px;
    background-color: #C0C0C0;
    display: inline-block;
}

.lgn_opt_alg {
    display: flex;
    gap: .5rem;
    align-items: center;
    padding: 10px 20px 10px 20px;
    justify-content: center;
    border: 1px solid #C0C0C0;
    border-radius: 50px;
    background: #fff;
}

.form_or_stick_para {
    font-family: var(--noto);
    font-weight: var(--fw500);
    color: #C0C0C0;
}

.lgn_opt_alg p {
    font-family: var(--noto);
    color: #518EF8;
    font-weight: var(--fw500);
    font-size: clamp(0.9rem, 0.8829rem + 0.0976vw, 1rem);
}

.form_footer_align {
    display: flex;
    gap: .3rem;
    justify-content: center;
    align-items: center;
    font-size: clamp(0.9rem, 0.6679rem + 0.7143vw, 1.125rem);
    margin-top: 1rem;
}

.form_footer_align .frm_foter_txt_algn {
    font-family: var(--noto);
    font-weight: var(--fw500);
    color: #6A6A6A;

}

.form_footer_align .frm_foter_txt_algn.txt_green {
    color: var(--green_col);
}

input[type="text"],
.password-input {
    border: 1px solid #C0C0C0;
    border-radius: 7px;
    color: #C0C0C0;
    padding: 1.1rem;
    box-shadow: none;
    width: var(--w100);
}

.password-input::placeholder {
    color: #C0C0C0;
}

input:focus~label,
input:valid~label {
    font-size: 12px;
    color: #C0C0C0;
    top: -5px;
    left: 10px;
    background: #ffffff;
    padding: 0px 5px 0px 5px;
}

.input_wrap {
    width: auto;
    height: auto;
    position: var(--pos_rel);
}

label {
    font-family: var(--noto);
    font-size: 14px;
    color: #C0C0C0;
    padding: 14px;
    position: var(--pos_abs);
    top: 3px;
    left: 0.3rem;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    pointer-events: none;
    margin-bottom: unset;
}

input:-webkit-autofill~label {
    font-family: var(--noto);
    font-size: 12px;
    color: #C0C0C0;
    position: var(--pos_abs);
    top: -12px;
    left: 0.8rem;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    pointer-events: none;
    margin-bottom: unset;
    background-color: #fff;
    padding: 3px 9px;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: rgba(111, 166, 20, 1);
}

input[type="text"]:focus+.label_color,
input[type="password"]:focus+.label_color {
    color: rgba(111, 166, 20, 1);
}

.mobile_header {
    display: none;
}

#enter_otp,
#forget_password,
/* #login, */
/* #set_your_password, */
#new_password
 {
    display: none;
}


.eye_icon_adj {
    position: relative;
}

.password-container {
    position: relative;
}



.toggle-password,
.toggle-button {
    position: absolute;
    top: 33.5%;
    right: 20px;
    cursor: pointer;
    background: transparent;
    border: 0;
}

.input_wrap.input__false+.toggle-button {
    top: 18.5%;
}



[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    outline: none;
}

#forget_password .form_sec_root.pos_abs .form_cont_align {
    gap: 1.5rem;
}

#forget_password .form_footer_align {
    gap: 1rem;
    align-items: center;
}

#forget_password .form_footer_align img {
    width: 0.6rem;
}

.otp-input-fields {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
    padding: 1.5rem;
    align-items: center;
    width: 100%;
}

.otp-input-fields input {
    height: 2.5rem;
    width: 2.5rem;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #C0C0C0;
    text-align: center;
    outline: none;
    font-size: 1rem;
}

.otp-input-fields input::-webkit-outer-spin-button,
.otp-input-fields input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp-input-fields input[type=number] {
    -moz-appearance: textfield;
}

.otp-input-fields input:focus {
    border-width: 2px;
    border-color: #6FA614;
    font-size: 1.25rem;
}

.enter_otp p {
    color: #6A6A6A;
    font-size: 1rem;
    font-family: var(--noto);
    text-align: center;
    font-size: 0.95rem;
}


#enter_otp .form_sec_root.pos_abs .form_cont_align {
    gap: unset;
}

#enter_otp .form_footer_align {
    margin-bottom: 1.5rem;
}

.form_footer_align.cancel_txt {
    margin-top: 3rem;
    margin-bottom: unset;
}

#enter_otp .form_footer_align p,
#enter_otp .form_footer_align .frm_foter_txt_algn p {
    font-weight: unset;
    font-size: 0.95rem;
}

#new_password .form_sec_root.pos_abs .form_cont_align,
#new_password .form_input_align {
    gap: 1.5rem;
}

#new_password .form_cont_align .form_sec_cont {
    margin-bottom: unset;
}


.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-container img {
    /* width: clamp(7rem, 5.6341rem + 7.8049vw, 15rem); */
    width: 7%;
}

.app,
.app-dashboard,
.app-root {
    display: unset;
}

.container {
    max-width: unset;
    margin: unset;
    padding: unset;
}

p {
    margin: unset;
}

body,
html {
    line-height: unset;
}
.password_error_list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 0.7rem;
    font-size: var(--font14);
    color: var(--primary_medium);
}
.password_error_list li span {
    font-size: 12px;
}
.spinner {
    display: none;
    margin-left: 10px;
}
@media screen and (max-width:1320px) {

    .form_cont_align .form_sec_cont {
        margin-bottom: unset;
    }
}


@media screen and (max-width:1024px) {
    .flex-container .auth_left_slide {
        display: none;
    }

    .flex-container {
        display: block;
        height: unset;
    }

    .mobile_resp.pos_abs {
        position: unset;
        display: flex;
        justify-content: center;
    }

    .form_sec_root.pos_abs {
        left: unset;
    }

    .form_sec_root {
        width: 80%;
    }

    .form_sec_root {
        padding: 3.5rem 3rem 7.5rem 3rem;
    }

    body {
        background-color: #EDF1E0;
    }

    .form_sec_root.pos_abs {
        top: 15%;
    }

    .form_cont_align .form_sec_cont {
        margin-bottom: 1rem;
    }

}

@media screen and (min-width:1520px) {
    .form_sec_root {
        width: 30%;
    }

    .form_footer_align {
        margin-top: 1.5rem;
    }
}

@media screen and (max-width:767px) {

    .logo_flex_spac_bet {
        display: none;
    }

    .form_sec_root.pos_abs .form_cont_align {
        display: flex;
        align-items: flex-start;
    }

    .form_sec_root.pos_abs {
        top: 15%;
    }

    .mobile_header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 2rem;
    }

    .mobile_header .close_icon {
        width: 2rem;
    }

    .form_sec_root.pos_abs {
        top: 5%;
    }

    .form_sec_root {
        padding: 3.5rem 1.5rem 4.5rem 1.5rem;
    }

    .form_sec_root {
        height: unset;
    }

}

@media screen and (max-width:520px) {
    .form_sec_root.pos_abs {
        top: 4%;
    }

    .form_or_stick_flex {
        gap: 1.5rem;
    }

    input[type="text"] {
        padding: 1rem;
    }

    input[type="password"] {
        padding: 1rem;
    }

    .mobile_header .close_icon {
        width: 1.5rem;
    }

    .form_sec_root {
        padding: 2.5rem 1.5rem 2.5rem 1.5rem;
    }

    .form_sec_root {
        width: 90%;
    }

    label {
        top: 4px;
        left: 0.3rem;
    }

    .form_footer_align .frm_foter_txt_algn {
        font-size: 0.9rem;
    }

}

@media screen and (max-width:390px) {

    .form_cont_align .form_sec_cont h4 {
        font-size: clamp(1.5rem, 2.7727rem + -7.2727vw, 1rem);
    }
}

@media screen and (max-width:319px) {
    .form_or_stick_flex {
        gap: 1rem;
    }



    .lgn_opt_alg .google_icon {
        height: 1.2rem;
    }
}

.lgn_opt_alg .sign_google {
    font-size: 0.875rem;
}

.eye_hide {
    display: none;
}

.forget_pass_align p {
    display: inline;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}

#forget_password .flex_col_g {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.lgn_opt_alg .sign_google,
.btn_wrapper_cont.cursor_pointer {
    margin-bottom: unset;
    font-size: 16px;
}

.input__false input {
    border: 1px solid red !important;
}

.input__false label {
    color: red !important;
}


.input__error {
    color: red !important;
    font-family: var(--noto);
    font-size: 13px;
    padding: 6px 0px 0px 9px;
    /* position: absolute; */
}

.input__false input[type="text"]:focus+.input__error+.label_color,
.input__false input[type="password"]:focus+.input__error+.label_color {
    color: red;
}

.forget_pass_align {
    display: inline;
}
.forget_pass_align label {
    position: relative;
    left: 0px !important;
    top: 0px !important;
    font-size: clamp(0.9rem, 0.6679rem + 0.7143vw, 1.125rem) !important;
    pointer-events: auto !important;
}
.password-container.input__false+.toggle-button {
    top: 18.5%;
}

.password-container.input__false .toggle-button {
    top: 24.5%;
}

.form_input_align .input_wrap.disable :disabled, .password-input :disabled {
    background-color: #F9F9F9;
    cursor: not-allowed;
    /* z-index: 99999; */
}

.label_disable{
    top: -9px;
    left: 14px;
    font-size: 12px;
    background-color: #F9F9F9;
    width: 55px;
    display: flex;
    justify-content: center;
    align-items: end;
    padding: unset;
}

.label_col_disable.disable input{
    border-color: unset !important;
}

.label_col_disable.disable label.label_color {
    color: #b5b5b5 !important;
}
.input_wrap.active label{
    border-color: rgb(111, 166, 20);
    font-size: 12px;
    color: #C0C0C0;
    top: -5px;
    left: 10px;
    background: #ffffff;
    padding: 0px 5px 0px 5px;
}