﻿#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;
}

[data-validation="error" i] .CustomInput {
    border: 2px solid rgba(255 70 70) !important;
}

    [data-validation="error" i] .CustomInput::before {
        color: rgba(255 70 70);
    }

#LoginAuthContent .InnerContent,
#SignUpContent .InnerContent,
#SignUpVerificationContent .InnerContent,
#ForgotPasswordContent .InnerContent,
#ForgotPasswordRecoveryContent .InnerContent {
    max-width: 42em;
    margin: 0 auto;
    padding: 9em 2em 1em;
    box-sizing: border-box;
    flex: auto;
}

    #LoginAuthContent .InnerContent #LoginFormWrapper,
    #SignUpContent .InnerContent #SignUpWrapper,
    #SignUpVerificationContent .InnerContent #SignUpVerificationWrapper,
    #ForgotPasswordContent .InnerContent #ForgotPasswordWrapper,
    #ForgotPasswordRecoveryContent .InnerContent #ForgotPasswordRecoveryWrapper {
        display: flex;
        flex-direction: column;
        border-radius: 2em;
        padding: 3em 2.6em;
        position: relative;
        background-color: #ffffff1a;
        /*        gap: 2.5em;*/
        gap: 2em;
    }

#AuthIconAbsoluteSection {
    position: absolute;
    top: -1em;
    width: 8.5em;
    left: 50%;
    right: 50%;
    transform: translate(-70%, -50%)
}

    #AuthIconAbsoluteSection .LogoIconWrapper {
        width: 12em;
        background-color: rgb(19, 25, 56);
        border-radius: 10em;
        padding: 1.7em;
    }

        #AuthIconAbsoluteSection .LogoIconWrapper img {
            width: 100%;
            height: 100%;
            vertical-align: top;
        }

.Title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .Title #StepsSection {
        color: #adb0bc;
    }

    .Title h1 {
        font-size: 2.5em;
        font-weight: 900;
        text-transform: uppercase;
        margin-inline: .1em;
    }

.CustomInput {
    display: flex;
    align-items: center;
    gap: 1.5em;
    background: #ffffff1a;
    border-radius: .9em;
    padding-inline: 1.5em;
    height: 3.5em;
}

    .CustomInput input {
        all: unset;
        flex: auto;
        height: 3em;
        width: 100%;
        color: currentColor;
        border: 0;
        font-weight: 600;
        appearance: textfield;
        -webkit-appearance: none;
        -moz-appearance: textfield;
    }

        .CustomInput input::-webkit-outer-spin-button,
        .CustomInput input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

    .CustomInput:has(> input:focus) {
        border: 1px solid var( --theme-color-light);
    }

        .CustomInput:has(> input:focus)::before {
            color: var( --theme-color-light);
            font-weight: 700;
        }


.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(255 255 255 / .2);
    }

    .PasswordVisbilitySection .PasswordVisilityBtn[password-visibility="visible" i]::before {
        content: "\f070";
        color: rgba(255 255 255 / .9);
    }


#LoginAuthContent #LoginFormWrapper #LoginMethodTab ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5em;
    background-color: rgb(25 31 62);
    border-radius: .9em;
    padding: 0 0.5em;
    margin-bottom: 0;
    height: 3.6em;
}

    #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(255, 255, 255, 0.75);
        padding: 0.6em 0;
        font-size: 1em;
        font-weight: 600;
        line-height: 1.5;
        width: 100%;
        min-height: unset;
        border-radius: .7em;
    }

#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: rgb(67 71 102);
    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="" i] .FormInputWrapper:has(#LoginMobileInput),
#LoginAuthContent #LoginFormWrapper[data-login-method="viaEmail" i] .FormInputWrapper:has(#LoginMobileInput),
#LoginAuthContent #LoginFormWrapper[data-login-method="viaMobile" i] .FormInputWrapper:has(#LoginUserNameInput) {
    display: none;
}


#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(255, 255, 255, 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: 1em;
}

    #LoginAuthContent #LoginFormWrapper #LoginFormSection .FormInputWrapper .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(255, 255, 255, 0.6);
        width: 1.3em;
        text-align: center;
    }

    #LoginAuthContent #LoginFormWrapper #LoginFormSection #LoginUserNameInput::before {
        content: "\f2bd";
    }

    #LoginAuthContent #LoginFormWrapper #LoginFormSection #LoginMobileInput::before {
        content: "\f10b";
    }

    #LoginAuthContent #LoginFormWrapper #LoginFormSection #LoginPasswordInput::before {
        content: "\f023";
    }

    #LoginAuthContent #LoginFormWrapper #LoginFormSection #LoginBtn {
        all: unset;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--theme-color-light);
        border-radius: .4em;
        color: #fff;
        font-size: 1.5em;
        width: 2em;
        height: 1.8em;
        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 #ForgotOrNewUserSection {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.5);
}

    #LoginAuthContent #ForgotOrNewUserSection .ForgotPasswordSection a {
        color: rgba(255, 255, 255, 0.5);
    }

#SignUpContent #SignUpWrapper #SignUpFormSection #SendSMSotpBtn {
    all: unset;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .55em;
    background-color: rgb(25 31 62);
    color: #fff;
    line-height: 1;
    padding: 0.85em;
    white-space: nowrap;
}

#SignUpContent #SignUpWrapper #MobileOtpSection {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

    #SignUpContent #SignUpWrapper #MobileOtpSection .T b,
    #SignUpContent #EmailVerificationContent .C b,
    #ForgotPasswordContent #ForgotPasswordWrapper #ResetPasswordVeritifcationContent .C b {
        font-weight: 800;
        color: var(--theme-color);
    }

    #SignUpContent #SignUpWrapper #MobileOtpSection #ResendOTPBtn {
        all: unset;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: .55em;
        line-height: 1;
        padding: 0.85em;
        min-width: 3em;
    }

        #SignUpContent #SignUpWrapper #MobileOtpSection #ResendOTPBtn[button-type="Resend" i ] {
            cursor: pointer;
            background-color: rgb(25 31 62);
            color: #fff;
            padding-inline: 1.2em;
        }

        #SignUpContent #SignUpWrapper #MobileOtpSection #ResendOTPBtn[button-type="CountDown" i ] {
            cursor: default !important;
            justify-content: end;
        }

#SignUpContent #SignUpWrapper #FormActionSection,
#ForgotPasswordContent #ForgotPasswordWrapper #FormActionSection,
#ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper #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,
    #KYCContent .FormActionSection button,
    #KYCResultContent .KYCResultContentWrapper .FormActionSection button {
        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: .5em;
        line-height: 1.8;
    }

#EmailVerificationContent[data-section-display="hidden"],
#ResetPasswordVeritifcationContent[data-section-display="hidden"] {
    display: none;
}

#EmailVerificationContent,
#ResetPasswordVeritifcationContent {
    display: block;
    text-align: center;
}

#SignUpVerificationContent .InnerContent #SignUpVerificationWrapper {
    gap: 1.8em;
}

#SignUpVerificationContent #SignUpVerificationWrapper .Title {
    display: flex;
    flex-direction: column;
    gap: .4em;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 3em;
}


    #SignUpVerificationContent #SignUpVerificationWrapper .Title h1 {
        font-size: 1.8em;
        font-weight: 900;
        text-transform: capitalize;
        color: rgba(255, 255, 255, 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 {
        margin: 0.5em;
        color: rgba(255, 255, 255, 0.75);
    }


#SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection,
#ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper #ForgotPasswordRecoveryFormSection {
    grid-template-columns: 1fr;
    gap: .5em;
}

    #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection .T,
    #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper #ForgotPasswordRecoveryFormSection .T {
        margin-inline-start: 1em;
        margin-block: 1.2em .35em;
        font-weight: 700;
    }

        #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection .T > span,
        #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper #ForgotPasswordRecoveryFormSection .T > span {
            display: flex;
            align-items: center;
        }

    #SignUpVerificationContent #SignUpVerificationWrapper #SignUpVerificationFormSection .C #PasswordValidationTips,
    #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper #ForgotPasswordRecoveryFormSection .C #PasswordValidationTips {
        display: flex;
        flex-direction: column;
        gap: .5em;
        margin: .6em 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(255 255 255/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: rgb(102 235 139 / 1);
            }

                #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 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1em;
    color: rgba(255 255 255 / 50%);
}

    #SignUpVerificationContent #FormActionSection a {
        color: var(--theme-color);
    }

#ForgotPasswordContent .InnerContent #ForgotPasswordWrapper,
#ForgotPasswordRecoveryContent .InnerContent #ForgotPasswordRecoveryWrapper {
    padding-top: 6em;
}

    #ForgotPasswordContent .InnerContent #ForgotPasswordWrapper .Title {
        flex-direction: column
    }

    #ForgotPasswordContent .InnerContent #ForgotPasswordWrapper h1,
    #ForgotPasswordContent .InnerContent #ForgotPasswordWrapper .Description,
    #ForgotPasswordRecoveryContent .InnerContent #ForgotPasswordRecoveryWrapper .Title {
        text-align: center;
    }

    #ForgotPasswordContent .InnerContent #ForgotPasswordWrapper .Description,
    #ForgotPasswordRecoveryContent .InnerContent #ForgotPasswordRecoveryWrapper .Desc {
        color: rgba(255, 255, 255, 0.75);
    }

#ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper .Title {
    flex-direction: column;
    gap: 1em;
}

    #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper .Title h1 {
        font-size: 2em;
        margin-inline: .1em;
    }

    #ForgotPasswordRecoveryContent #ForgotPasswordRecoveryWrapper .Title #EmailDisplay {
        font-size: 1.166667em;
        font-weight: 800;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        color: var(--theme-color);
    }

#ForgotPasswordRecoveryContent #ResetPasswordExpirationSection {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: .7em;
    box-sizing: border-box;
    overflow: hidden;
}

    #ForgotPasswordRecoveryContent #ResetPasswordExpirationSection #ExpiredIconSection {
        height: 7em;
        width: 7em;
    }

        #ForgotPasswordRecoveryContent #ResetPasswordExpirationSection #ExpiredIconSection img {
            height: 100%;
            width: auto;
            max-width: min(12em, 100%);
            object-fit: contain;
        }
