﻿#ErrorDisplaySection[data-validation]:not([data-validation="error"]),
.ErrorDisplay {
    display: none;
}

[data-validation="error" i] .ErrorDisplay {
    display: block;
    color: rgba(255 70 70);
    font-weight: 800;
    font-size: 0.9em;
    margin: 0.5em 2em;
}

[data-validation="error" i] .CustomInput {
    border: 2px solid rgba(255 70 70) !important;
}

    [data-validation="error" i] .CustomInput::before {
        color: rgba(255 70 70);
    }

.PasswordVisbilitySection .PasswordVisilityBtn {
    all: unset;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: none;
}

    .PasswordVisbilitySection .PasswordVisilityBtn::before {
        font-family: "Font Awesome 6 Free";
        font-weight: 600;
        font-size: 1.3em;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .PasswordVisbilitySection .PasswordVisilityBtn[password-visibility="hidden" i]::before {
        content: "\f06e";
        color: rgba(0 0 0 / .2);
    }

    .PasswordVisbilitySection .PasswordVisilityBtn[password-visibility="visible" i]::before {
        content: "\f070";
        color: rgba(0 0 0 / .9);
    }


#AuthActionAbsoluteSection {
    position: absolute;
    background-color: #301754;
    padding: 1em;
    border-radius: 1em;
    right: 40px;
    top: -1.5em;
    width: 8.5em;
}

    #AuthActionAbsoluteSection:hover {
        background-color: var( --theme-color-light);
    }

    #AuthActionAbsoluteSection .LogoIconWrapper {
        width: 4.5em;
    }

        #AuthActionAbsoluteSection .LogoIconWrapper img {
            width: 100%;
            height: 100%;
            vertical-align: top;
        }

    #AuthActionAbsoluteSection a {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.5em;
    }

        #AuthActionAbsoluteSection a h6 {
            font-size: 0.85em;
            font-weight: 800;
            text-align: center;
            color: #fff;
        }

            #AuthActionAbsoluteSection a h6 span {
                display: block;
            }

/* <!-- LOGIN CSS START HERE  --!> */
#LoginAuthContent .InnerContent,
#SignUpContent .InnerContent,
#SignUpVerificationContent .InnerContent,
#ForgotPasswordContent .InnerContent,
#ForgotPasswordRecoveryContent .InnerContent {
    max-width: 47em;
    margin: 0 auto;
    padding: 9em 2em 3em;
    box-sizing: border-box;
    flex: auto;
}

#LoginAuthContent #DismissAuthContentPage,
#SignUpContent #DismissAuthContentPage,
#SignUpVerificationContent #DismissAuthContentPage,
#ForgotPasswordContent #DismissAuthContentPage,
#ForgotPasswordRecoveryContent #DismissAuthContentPage {
    display: none;
}

#LoginAuthContent .InnerContent #LoginFormWrapper,
#SignUpContent .InnerContent #SignUpWrapper,
#SignUpVerificationContent .InnerContent #SignUpVerificationWrapper,
#ForgotPasswordContent .InnerContent #ForgotPasswordWrapper,
#ForgotPasswordRecoveryContent .InnerContent #ForgotPasswordRecoveryWrapper {
    display: flex;
    flex-direction: column;
    border-radius: 2em;
    padding: 4em;
    position: relative;
    box-shadow: rgba(0 0 0 / 3%) 0 0 0 1px,rgba(0 0 0/ 2%) 0 0 1em;
    background-color: #fff;
    gap: 2em;
}

#LoginAuthContent #LoginFormWrapper .Title h1 {
    font-size: 2.5em;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 0.6em;
}

#LoginAuthContent #LoginFormWrapper .Title:before {
    content: '';
    display: block;
    width: 4px;
    height: auto;
    background-color: var(--theme-color-light);
}

#LoginAuthContent #LoginFormWrapper #LoginMethodTab ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5em;
    background-color: rgba(0 0 0/5%);
    border-radius: 2em;
    padding: 0 0.45em;
    margin-bottom: 0;
    height: 4em;
}

#LoginAuthContent #LoginFormWrapper[data-login-method="" i] #LoginMethodTab ul #viaEmailAddressBtn,
#LoginAuthContent #LoginFormWrapper[data-login-method="viaEmail" i] #LoginMethodTab ul #viaEmailAddressBtn,
#LoginAuthContent #LoginFormWrapper[data-login-method="viaMobile" i] #LoginMethodTab ul #viaMobileNumberBtn {
    background-color: var(--theme-color-light);
    color: #fff;
}

    #LoginAuthContent #LoginFormWrapper[data-login-method="" i] #LoginMethodTab ul #viaEmailAddressBtn::before,
    #LoginAuthContent #LoginFormWrapper[data-login-method="viaEmail" i] #LoginMethodTab ul #viaEmailAddressBtn::before,
    #LoginAuthContent #LoginFormWrapper[data-login-method="viaMobile" i] #LoginMethodTab ul #viaMobileNumberBtn::before {
        color: #fff;
    }

#LoginAuthContent #LoginFormWrapper[data-login-method="viaMobile" i] .FormInputWrapper:has(#LoginUserNameInput) {
    display: none;
}

#LoginAuthContent #LoginFormWrapper[data-login-method="" i] .FormInputWrapper:has(#LoginMobileInput),
#LoginAuthContent #LoginFormWrapper[data-login-method="viaEmail" i] .FormInputWrapper:has(#LoginMobileInput) {
    display: none;
}

#LoginAuthContent #LoginFormWrapper #LoginMethodTab ul > li {
    display: flex;
    justify-content: center;
    align-items: center;
}

#LoginAuthContent #LoginFormWrapper #LoginMethodTab ul button {
    display: flex;
    gap: 0.8em;
    justify-content: center;
    align-items: center;
    border: 0;
    background-color: transparent;
    color: rgba(0, 0, 0, 0.75);
    padding: 0.85em 0;
    font-size: 1em;
    font-weight: 600;
    line-height: 1.5;
    width: 100%;
    min-height: unset;
    border-radius: 1.6em;
}

    #LoginAuthContent #LoginFormWrapper #LoginMethodTab ul button::before {
        display: block;
        font-family: "Font Awesome 6 Free";
        font-weight: 600;
        font-size: 1.1em;
        line-height: 1;
        overflow: hidden;
        color: rgba(0, 0, 0, 0.6);
    }

#LoginAuthContent #LoginFormWrapper #LoginMethodTab ul #viaEmailAddressBtn::before {
    content: "\f003";
}

#LoginAuthContent #LoginFormWrapper #LoginMethodTab ul #viaMobileNumberBtn::before {
    content: "\f095";
}

#LoginAuthContent #LoginFormWrapper #LoginFormSection,
#SignUpContent #SignUpWrapper #SignUpFormSection {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

    #LoginAuthContent #LoginFormWrapper #LoginFormSection .FormInputWrapper .CustomInput,
    #SignUpContent #SignUpWrapper #SignUpFormSection .FormInputWrapper .CustomInput,
    #SignUpContent #SignUpWrapper #MobileOtpSection .C #OTPInput,
    #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection .CustomInput,
    #ForgotPasswordContent #ForgotPasswordWrapper #ForgotPasswordFormSection .CustomInput,
    #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper #ForgotPasswordRecoveryFormSection .CustomInput {
        display: flex;
        align-items: center;
        gap: 1.5em;
        background-color: rgba(0 0 0/5%);
        border-radius: 2em;
        padding-inline: 1.5em;
        height: 4em;
    }

        #LoginAuthContent #LoginFormWrapper #LoginFormSection .FormInputWrapper .CustomInput::before,
        #SignUpContent #SignUpWrapper #SignUpFormSection .FormInputWrapper .CustomInput::before,
        #ForgotPasswordContent #ForgotPasswordWrapper #ForgotPasswordFormSection .CustomInput::before {
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: "Font Awesome 6 Free";
            font-weight: 600;
            font-size: 1.6em;
            line-height: 1;
            color: rgba(0, 0, 0, 0.6);
            width: 1.3em;
            text-align: center;
        }

    #LoginAuthContent #LoginFormWrapper #LoginFormSection #LoginUserNameInput::before {
        content: "\f2bd";
    }

    #LoginAuthContent #LoginFormWrapper #LoginFormSection #LoginMobileInput::before,
    #SignUpContent #SignUpWrapper #SignUpFormSection #SignUpMobileInput::before {
        content: "\f10b";
    }

    #LoginAuthContent #LoginFormWrapper #LoginFormSection #LoginPasswordInput::before {
        content: "\f023";
    }

    #LoginAuthContent #LoginFormWrapper #LoginFormSection input,
    #SignUpContent #SignUpWrapper #SignUpFormSection input,
    #SignUpContent #SignUpWrapper #MobileOtpSection .C #OTPInput input,
    #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection input,
    #ForgotPasswordContent #ForgotPasswordWrapper #ForgotPasswordFormSection input,
    #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper #ForgotPasswordRecoveryFormSection input {
        all: unset;
        flex: auto;
        height: 3em;
        width: 100%;
        color: currentColor;
        border: 0;
        font-weight: 600;
        appearance: textfield;
        -webkit-appearance: none;
        -moz-appearance: textfield;
    }

        #LoginAuthContent #LoginFormWrapper #LoginFormSection input::-webkit-outer-spin-button,
        #LoginAuthContent #LoginFormWrapper #LoginFormSection input::-webkit-inner-spin-button,
        #SignUpContent #SignUpWrapper #SignUpFormSection input::-webkit-outer-spin-button,
        #SignUpContent #SignUpWrapper #SignUpFormSection input::-webkit-inner-spin-button,
        #SignUpContent #SignUpWrapper #MobileOtpSection .C #OTPInput input::-webkit-outer-spin-button,
        #SignUpContent #SignUpWrapper #MobileOtpSection .C #OTPInput input::-webkit-inner-spin-button,
        #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection input::-webkit-outer-spin-button,
        #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection input::-webkit-inner-spin-button,
        #ForgotPasswordContent #ForgotPasswordWrapper #ForgotPasswordFormSection input::-webkit-outer-spin-button,
        #ForgotPasswordContent #ForgotPasswordWrapper #ForgotPasswordFormSection input::-webkit-inner-spin-button,
        #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper #ForgotPasswordRecoveryFormSection input::-webkit-outer-spin-button,
        #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper #ForgotPasswordRecoveryFormSection input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

    #LoginAuthContent #LoginFormWrapper #LoginFormSection .FormInputWrapper .CustomInput:has(> input:focus),
    #SignUpContent #SignUpWrapper #SignUpFormSection .FormInputWrapper .CustomInput:has(> input:focus),
    #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection .CustomInput:has(> input:focus),
    #ForgotPasswordContent #ForgotPasswordWrapper #ForgotPasswordFormSection .CustomInput:has(> input:focus),
    #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper #ForgotPasswordRecoveryFormSection .CustomInput:has(> input:focus) {
        border: 2px solid var( --theme-color-light);
    }

        #LoginAuthContent #LoginFormWrapper #LoginFormSection .FormInputWrapper .CustomInput:has(> input:focus)::before,
        #SignUpContent #SignUpWrapper #SignUpFormSection > .FormInputWrapper:has(> input:focus)::before,
        #ForgotPasswordContent #ForgotPasswordFormSection > .FormInputWrapper:has(> input:focus)::before {
            color: var( --theme-color-light);
            font-weight: 700;
        }

    #LoginAuthContent #LoginFormWrapper #LoginFormSection #LoginBtn {
        all: unset;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--theme-color-light);
        border-radius: 5em;
        color: #fff;
        font-size: 1.5em;
        width: 2.1em;
        height: 2.1em;
        border-width: 0;
        flex: 0 0 auto;
    }

    #LoginAuthContent #LoginFormWrapper #LoginFormSection #LoginPasswordInput,
    #SignUpContent #SignUpWrapper #SignUpFormSection #SignUpMobileInput,
    #SignUpContent #SignUpWrapper #MobileOtpSection .C #OTPInput {
        padding-inline-end: .5em;
    }

#LoginAuthContent #LoginFormWrapper #ForgotPasswordSection {
    text-align: center;
}

    #LoginAuthContent #LoginFormWrapper #ForgotPasswordSection a {
        color: var(--theme-color);
    }

#LoginViaSocialAccountSection {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    margin-top: 1em;
}

    #LoginViaSocialAccountSection h3 {
        font-weight: 600;
        font-size: 1em;
        text-align: center;
        opacity: .7;
    }


.SocialAccountList {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
}

    .SocialAccountList a {
        all: unset;
        cursor: pointer;
        padding: 0.5em;
        height: 2em;
        width: 2em;
        overflow: hidden;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border-radius: 100%;
    }

        .SocialAccountList a:hover {
            background-color: rgba(0, 0, 0, .75);
        }

            .SocialAccountList a:hover::before {
                color: #fff;
            }

        .SocialAccountList a::before {
            font-family: "remixicon";
            font-weight: normal;
            font-size: 2.5em;
            color: rgba(0, 0, 0, 0.75);
        }

    .SocialAccountList #LoginGmailBtn::before {
        content: "\edd4";
    }

    .SocialAccountList #LoginFacebookBtn::before {
        content: "\ecba";
    }
/* <!-- LOGIN CSS END HERE  --!> */
/* <!-- SIGN UP CSS START HERE  --!> */
#SignUpContent #SignUpWrapper .Title h1 {
    font-size: 2.5em;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.75);
}

#SignUpContent #SignUpWrapper #SignUpFormSection #SignUpEmailAddressInput::before {
    content: "\f0e0";
}

#SignUpContent #SignUpWrapper #SignUpFormSection #SendSMSotpBtn {
    all: unset;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5em;
    background-color: var(--theme-color-light);
    color: #fff;
    line-height: 1.5;
    padding: 0.8em;
    /*    width: 8em;*/
    white-space: nowrap;
}

#SignUpContent #SignUpWrapper #MobileOtpSection {
    margin-top: 2.5em;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

    #SignUpContent #SignUpWrapper #MobileOtpSection .T b,
    #SignUpContent #EmailVerificationContent .C b,
    #ForgotPasswordContent #ResetPasswordVeritifcationContent .C b {
        font-weight: 800;
        color: var(--theme-color)
    }

    #SignUpContent #SignUpWrapper #MobileOtpSection .T span {
        display: block;
    }

    #SignUpContent #SignUpWrapper #MobileOtpSection #ResendOTPBtn {
        all: unset;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 5em;
        line-height: 1.5;
        padding: 0.8em;
        min-width: 3em;
    }

        #SignUpContent #SignUpWrapper #MobileOtpSection #ResendOTPBtn[button-type="Resend" i ] {
            cursor: pointer;
            background-color: var(--theme-color-light);
            color: #fff;
            padding: 0.8em 2em;
        }

        #SignUpContent #SignUpWrapper #MobileOtpSection #ResendOTPBtn[button-type="CountDown" i ] {
            cursor: default !important;
            background-color: #d0d4db;
            color: #000;
        }


#SignUpContent #SignUpWrapper #FormActionSection,
#SignUpVerificationContent #FormActionSection,
#ForgotPasswordContent #ForgotPasswordWrapper #FormActionSection {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1em 0;
}

    #SignUpContent #SignUpWrapper #FormActionSection #VerifyEmailBtn,
    #SignUpVerificationContent #FormActionSection #RegisterBtn,
    #ForgotPasswordContent #ForgotPasswordWrapper #ResetPasswordBtn,
    #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper #SavePasswordBtn {
        all: unset;
        cursor: pointer;
        background-color: var(--theme-color-light);
        color: #fff;
        font-size: 1.166667em;
        font-weight: 800;
        text-transform: uppercase;
        padding: .5em 2em;
        border-radius: 1.5em;
        line-height: 1.8;
    }

#EmailVerificationContent[data-section-display="hidden"],
#ResetPasswordVeritifcationContent[data-section-display="hidden"] {
    display: none;
}

#EmailVerificationContent,
#ResetPasswordVeritifcationContent {
    display: block;
    text-align: center;
}
/* <!-- SIGN UP CSS END HERE  --!> */

/* <!-- SIGN UP VERIFICATION CSS START HERE  --!> */
#SignUpVerificationContent #SignUpVerificationWrapper .Title {
    display: flex;
    flex-direction: column;
    gap: 1em;
    text-align: center;
    justify-content: center;
    align-items: center;
}


    #SignUpVerificationContent #SignUpVerificationWrapper .Title h1 {
        font-size: 2em;
        font-weight: 900;
        text-transform: uppercase;
        color: rgba(0, 0, 0, 0.75);
    }

    #SignUpVerificationContent #SignUpVerificationWrapper .Title #EmailAddressDisplay {
        font-size: 1.166667em;
        font-weight: 800;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #SignUpVerificationContent #SignUpVerificationWrapper .Title .Desc {
        padding: 1em;
        background-color: #f1f1f1;
        border-radius: 1em;
        max-width: 30em;
        margin: 0.5em;
    }


#SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection {
    display: grid;
    grid-template-columns: max(25%, 8em) 1fr;
    gap: 1.2em 1.8em;
    padding-block-start: .5em;
}

    #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection .T > span {
        display: flex;
        align-items: center;
        min-height: 3em;
    }


    #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection .C .CustomInput,
    #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper #ForgotPasswordRecoveryFormSection .CustomInput {
        border: 1px rgba(0 0 0/.1) solid;
        background-color: #fff;
    }

    #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection .C #PasswordValidationTips,
    #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper #ForgotPasswordRecoveryFormSection .C #PasswordValidationTips {
        display: flex;
        flex-direction: column;
        gap: .5em;
        margin: 1em 1.5em;
    }

        #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection .C #PasswordValidationTips > div,
        #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper #ForgotPasswordRecoveryFormSection .C #PasswordValidationTips > div {
            display: grid;
            grid-template-columns: auto 1fr;
            align-items: start;
            gap: 1em;
        }

        #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection .C #PasswordValidationTips .Tips,
        #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper #ForgotPasswordRecoveryFormSection .C #PasswordValidationTips .Tips {
            color: rgba(0 0 0/50%);
        }

            #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection .C #PasswordValidationTips .Tips::before,
            #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper #ForgotPasswordRecoveryFormSection .C #PasswordValidationTips .Tips::before {
                content: "\f05a";
                font-family: "Font Awesome 6 Free";
                font-weight: 600;
                font-size: 1em;
            }

            #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection .C #PasswordValidationTips .Tips[tips-status="error" i ],
            #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper #ForgotPasswordRecoveryFormSection .C #PasswordValidationTips .Tips[tips-status="error" i ] {
                color: rgba(255 70 70);
            }

                #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection .C #PasswordValidationTips .Tips[tips-status="error" i]::before,
                #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper #ForgotPasswordRecoveryFormSection .C #PasswordValidationTips .Tips[tips-status="error" i ]::before {
                    content: "\f057";
                }

            #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection .C #PasswordValidationTips .Tips[tips-status="success" i ],
            #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper #ForgotPasswordRecoveryFormSection .C #PasswordValidationTips .Tips[tips-status="success" i ] {
                color: rgba(0 128 0);
            }

                #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection .C #PasswordValidationTips .Tips[tips-status="success" i ]::before,
                #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper #ForgotPasswordRecoveryFormSection .C #PasswordValidationTips .Tips[tips-status="success" i ]::before {
                    content: "\f00c";
                }


#SignUpVerificationContent #FormActionSection {
    gap: 2em;
}

    #SignUpVerificationContent #FormActionSection a {
        color: var(--theme-color);
    }
/* <!-- SIGN UP VERIFICATION CSS END HERE  --!> */


/* <!-- FORGOT PASSWORD CSS START HERE  --!> */
#ForgotPasswordContent #ForgotPasswordWrapper .Title {
    text-align: center;
}

    #ForgotPasswordContent #ForgotPasswordWrapper .Title h1 {
        font-size: 2.5em;
        font-weight: 900;
        text-transform: uppercase;
        color: rgba(0, 0, 0, 0.75);
    }

#ForgotPasswordContent #ForgotPasswordWrapper #ForgotPasswordFormSection #FrogotPasswordEmailAddressInput::before {
    content: "\f0e0";
}

#ForgotPasswordContent [data-validation="error" i] .ErrorDisplay {
    text-align: center;
    margin-top: -0.5em;
}
/* <!-- FORGOT PASSWORD CSS END HERE  --!> */

/* <!-- FORGOT PASSWORD RECOVERY CSS START HERE  --!> */
#ForgotPasswordRecoveryContent .InnerContent #ForgotPasswordRecoveryWrapper {
    display: flex;
    align-items: center;
    padding: 3em 2em;
}

#ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper .Title {
    display: flex;
    flex-direction: column;
    gap: 1em;
    text-align: center;
    justify-content: center;
    align-items: center;
}

    #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper .Title h1 {
        font-size: 2em;
        font-weight: 900;
        text-transform: uppercase;
        color: rgba(0, 0, 0, 0.75);
    }

    #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper .Title #EmailDisplay {
        font-size: 1.166667em;
        font-weight: 800;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

#ForgotPasswordRecoveryContent #ForgotPasswordRecoveryFormSection {
    display: grid;
    gap: .5em;
}

    #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryFormSection .T span {
        margin-inline: 1.2em;
        font-weight: 700;
    }

#ForgotPasswordRecoveryWrapper #ForgotPasswordRecoveryFormSection .C #PasswordValidationTips {
    margin-bottom: 1.5em !important;
}

#ForgotPasswordRecoveryContent #ExpiredIconSection {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    height: 7em;
    width: 7em;
}

    #ForgotPasswordRecoveryContent #ExpiredIconSection img {
        height: 100%;
        width: auto;
        max-width: min(12em, 100%);
        object-fit: contain;
    }

/* <!-- FORGOT PASSWORD RECOVERY CSS END HERE  --!> */
@media only screen and (max-width: 580px) {
    #LoginAuthContent .InnerContent,
    #SignUpContent .InnerContent,
    #SignUpVerificationContent .InnerContent,
    #ForgotPasswordContent .InnerContent,
    #ForgotPasswordRecoveryWrapper .InnerContent {
        padding-inline: 1.5em;
    }

        #LoginAuthContent .InnerContent #LoginFormWrapper,
        #SignUpContent .InnerContent #SignUpWrapper,
        #SignUpVerificationContent .InnerContent #SignUpVerificationWrapper,
        #ForgotPasswordContent .InnerContent #ForgotPasswordWrapper,
        #ForgotPasswordRecoveryWrapper .InnerContent #ForgotPasswordWrapper {
            padding: 4em 3em;
        }

    #SignUpVerificationContent .InnerContent {
        padding-block-start: 4em;
    }

    #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection {
        column-gap: 1.5em;
    }
}

@media only screen and (max-width: 500px) {

    #LoginAuthContent .InnerContent #LoginFormWrapper,
    #SignUpContent .InnerContent #SignUpWrapper,
    #SignUpVerificationContent .InnerContent #SignUpVerificationWrapper,
    #ForgotPasswordContent .InnerContent #ForgotPasswordWrapper,
    #ForgotPasswordRecoveryWrapper .InnerContent {
        padding: 3.5em 2em;
    }
}

@media only screen and (max-width: 480px) {

    body {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
        touch-action: none;
    }

    header #MainHeader #ProductClassificationMenu,
    header #MainHeader #HeaderNav,
    footer {
        display: none;
    }

    header #MainHeader {
        padding: 0;
    }

        header #MainHeader #HeaderLogo {
            margin: 5em auto;
        }

            header #MainHeader #HeaderLogo a {
                max-height: 9em;
                width: 13em;
            }

    body, main {
        background-color: #301754;
    }

    #LoginAuthContent,
    #SignUpContent,
    #SignUpVerificationContent,
    #ForgotPasswordContent,
    #ForgotPasswordRecoveryContent {
        position: fixed;
        inset: 0;
        z-index: 1000;
        overflow-y: auto;
        background-color: transparent;
        padding: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

        #LoginAuthContent::-webkit-scrollbar,
        #SignUpContent::-webkit-scrollbar,
        #SignUpVerificationContent::-webkit-scrollbar,
        #ForgotPasswordContent::-webkit-scrollbar,
        #ForgotPasswordRecoveryContent::-webkit-scrollbar {
            display: none;
        }

        #LoginAuthContent .InnerContent,
        #SignUpContent .InnerContent,
        #SignUpVerificationContent .InnerContent,
        #ForgotPasswordContent .InnerContent,
        #ForgotPasswordRecoveryContent .InnerContent {
            padding: 0;
            width: 100%;
            max-width: 40em;
            margin-inline: auto;
            padding-top: 2.5em;
            height: 100%;
        }

        #LoginAuthContent #DismissAuthContentPage,
        #SignUpContent #DismissAuthContentPage,
        #SignUpVerificationContent #DismissAuthContentPage,
        #ForgotPasswordContent #DismissAuthContentPage,
        #ForgotPasswordRecoveryContent #DismissAuthContentPage {
            display: block;
            height: calc(var(--header-height) - 2.5em);
        }

        #LoginAuthContent .InnerContent #LoginFormWrapper,
        #SignUpContent .InnerContent #SignUpWrapper,
        #SignUpVerificationContent .InnerContent #SignUpVerificationWrapper,
        #ForgotPasswordContent .InnerContent #ForgotPasswordWrapper,
        #ForgotPasswordRecoveryContent .InnerContent #ForgotPasswordRecoveryWrapper {
            background: #fff;
            border-radius: 1.8em 1.8em 0 0;
            height: 100%;
            padding-inline: 1.5em;
        }


    #AuthActionAbsoluteSection {
        background-color: var(--theme-color-light);
        right: 2em;
        top: -2em;
    }

    #LoginAuthContent #LoginFormWrapper #LoginMethodTab ul {
        gap: .8em;
        padding: 0;
        border-radius: 1.8em;
    }

        #LoginAuthContent #LoginFormWrapper #LoginMethodTab ul button {
            border-radius: 1.4em;
        }

    #LoginAuthContent #LoginFormWrapper #LoginFormSection .FormInputWrapper .CustomInput,
    #SignUpContent #SignUpWrapper #SignUpFormSection .FormInputWrapper .CustomInput,
    #SignUpContent #SignUpWrapper #MobileOtpSection .C #OTPInput,
    #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection .CustomInput,
    #ForgotPasswordContent #ForgotPasswordWrapper #ForgotPasswordFormSection .CustomInput,
    #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper #ForgotPasswordRecoveryFormSection .CustomInput {
        border-radius: 1.8em;
    }

    #LoginViaSocialAccountSection {
        max-width: 23em;
        margin-inline: auto;
    }

    #LiveChatWidgetSection {
        z-index: 2000;
    }

    #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection {
        grid-template-columns: 1fr;
        gap: .5em;
    }

        #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection .T {
            margin-inline-start: 1em;
            margin-block-start: 1.2em;
            font-weight: 700;
        }

            #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection .T > span {
                min-height: unset;
            }

    #SignUpVerificationContent .InnerContent #SignUpVerificationWrapper {
        gap: 1em;
    }

    #SignUpVerificationContent #FormActionSection {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 1em;
    }

    #ForgotPasswordContent #ForgotPasswordWrapper .Title h1 {
        font-size: 2em;
    }
}
