body {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    /* min-height: 100vh; */
    /* padding: 2rem; */
    background: #22075F;
    /* background: url(../images/auth/left-ellipse.svg) left bottom no-repeat, url(../images/auth/right-ellipse.svg) right top no-repeat, #22075F;
    background-position: -5% 336px, 103% 57px; */
    /* background: url(../images/auth/left-ellipse.svg) left bottom no-repeat, url(../images/auth/right-ellipse.svg) right top no-repeat, #22075F; */
    font-family: "Inter", sans-serif;
    /* padding: 180px 150px; */
}


.register-body {
    background: url(../images/auth/left-ellipse.svg) left bottom no-repeat, url(../images/auth/right-ellipse.svg) right top no-repeat, #22075F;
    background-position: -5% 454px, 103% 57px;
}

.auth-bg {
    background-color: #22075f !important;
}

.heading-text {
    color: #E7F8FD;
    font-size: 41px;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 50px;
}

.twoFaText {
    font-size: 39px;
}

.text-register {

    margin-bottom: 50px;
}

/* Custom check-box */
.sb-checkbox__input {
    display: none;
}

.sb-checkbox__input:checked+.sb-checkbox__label:after {
    opacity: 1;
}

.sb-checkbox__label {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    cursor: pointer;
    margin-top: 3px;
}

.sb-checkbox__label:before {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid #E7F8FD;
    box-sizing: border-box;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
}

.sb-checkbox__label:after {
    content: "done";
    font-family: 'Material Icons';
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    width: 16px;
    height: 16px;
    display: block;
    border-radius: 2px;
    overflow: hidden;
    text-align: center;
    opacity: 0;
    transition: 0.2s opacity;
}

.sb-checkbox__label--green:before {
    border-color: #fff;
}

.sb-checkbox__label--green:after {
    background-color: #fff;
    color: #000;
}

/* Custom check-box */
.register-container {
    display: flex;
    justify-content: center;
    align-items: center;

    margin: 135px 0 0 0;
    /* background: url(../images/auth/left-ellipse.svg) left bottom no-repeat, url(../images/auth/right-ellipse.svg) right top no-repeat, #22075F;
    background-position: 0% 300px,
        100% -75px;
    padding: 180px 150px; */
}

.register-form {
    /* width: 50%; */
    max-width: 500px;
}

h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

input,
.select-container {
    width: 100%;
    height: 40px;
    padding: 0 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 8px;
    background-color: #E7F8FD50;
    color: white;
    font-size: 16px;
    line-height: 50px;
}

input::placeholder,
.select-container::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 400;
}

.form-control::placeholder {
    color: #888;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 400;
}

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

.two-column>* {
    /* flex: 1; */
}

/* Styles for the country dropdown */
.select-container {
    position: relative;
    padding: 0;
    width: 50%;
}

.select-container select {
    appearance: none;
    background: transparent;
    width: 100%;
    height: 40px;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    /* Lighter color for placeholder */
    font-size: 1rem;
    cursor: pointer;
    padding: 0 1rem;
    line-height: 40px;
}

.select-container select:not(:invalid) {
    color: white;
    /* White color for selected option */
}

.select-container::after {
    content: '\25BC';
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    color: #E7F8FD;
    pointer-events: none;
}

.select-container select option {
    background-color: #2a1c4a;
    color: white;
}

.select-container select option:first-child {
    color: rgba(255, 255, 255, 0.5);
}

.help-link {
    display: block;
    color: #4C83F0 !important;
    text-decoration: none;
    margin-bottom: 27px;
    margin-top: 15px;
    font-size: 17px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: white;
}

.checkbox-container input {
    margin-right: 0.5rem;
    width: auto;
    height: auto;
}

.register-button {
    width: 210px;
    height: 51px;
    padding: 0.75rem;
    background-color: #4C83F0;
    color: #22075F;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    margin-top: 15px;
    letter-spacing: 1px;
    font-family: Inter !important;
}

.login-link {
    text-align: left;
    color: #e7f8fd80;
    margin-top: 25px;
}

.login-link a {
    color: #e7f8fd80;
    text-decoration: underline;
}

.mask-image {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mask-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .register-container {
        flex-direction: column;
    }

    .register-form,
    .mask-image {
        width: 100%;
    }

    .mask-image {
        order: -1;
        margin-bottom: 2rem;
    }
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    color: white;
    font-size: 0.9rem;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0px;
    height: 20px;
    width: 20px;
    /* background-color: rgba(255, 255, 255, 0.1); */
    background-color: transparent !important;
    border-radius: 4px;
    margin-top: 4px;
    border: 2px solid #E7F8FD;
}

.checkmark-text {
    font-size: 16px;
    font-weight: 500;
}

.checkbox-container:hover input~.checkmark {
    background-color: rgba(255, 255, 255, 0.2);
}

.checkbox-container input:checked~.checkmark {
    background-color: transparent;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

input:focus,
textarea:focus {
    background: #857fae;
    border-color: #857fae;
}

select:focus {
    background: transparent;
    border-color: transparent;
}

.css-13cymwt-control {
    background-color: #e7f8fd50 !important;
    border-color: #e7f8fd00 !important;
    border-radius: 8px !important;
}

.css-19bb58m {
    color: rgba(255, 255, 255, 0.5) !important;
    margin: -5px !important;
}

.css-1jqq78o-placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.css-hlgwow:not(.add-voucher-modal .css-hlgwow) {
    width: 100% !important;
    height: 40px !important;
    margin: 0 !important;
    grid-area: unset !important;
}


.css-t3ipsp-control {
    background-color: hsl(248 22% 59% / 1) !important;
    border-color: hsl(248 22% 59% / 1) !important;
    box-shadow: none !important;
    border-radius: 8px !important;
}

.css-1nmdiq5-menu {
    background-color: hsl(248 22% 59% / 1) !important;
    border: 1px solid #e7f8fd4f !important;
}

.css-9x5mqu {
    color: #e7f8fd8f !important;
}


.form-control {
    display: block;
    width: 100%;
    height: 40px;
    padding: .375rem .75rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #E7F8FD;
    background-color: #E7F8FD50;
    background-clip: padding-box;
    border: none;
    border-radius: 8px;
}


.input-group-text {
    background-color: #E7F8FD50;
    border: none;
    color: #E7F8FD;
    display: block;
    padding: .375rem .75rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.css-1cfo1cf {
    color: #cccae4 !important;
    margin: -4px 0 0 0 !important;
}

.form-control:focus {
    color: #495057;
    background-color: #E7F8FD50;
    border: none;
    outline: 0;
    box-shadow: none;
}

.css-1dimb5e-singleValue {
    color: #cccae4 !important;
}

.css-tr4s17-option {
    background-color: #22095f !important;
    color: #e7f8fd !important;
}
.add-voucher-modal #react-select-3-listbox div{
    line-height: 1.6 !important;
    padding: 10px 12px !important;
}
.add-voucher-modal .modal-footer{
    border-color: #6d5aa6 !important;
}
.add-voucher-modal .css-13cymwt-control{
    background-color: #3f2e67 !important;
}
.add-voucher-modal #react-select-3-listbox{
    padding: 0 !important;
}
/* .add-voucher-modal *{
    color: #e7f8fd !important;
} */
.css-d7l1ni-option {
    cursor: pointer !important;
    color: #22095f !important;
    background-color: #e7f8fd !important;

}

.css-10wo9uf-option {
    color: #e7f8fd !important;
    cursor: pointer !important;
}

.css-15lsz6c-indicatorContainer {
    color: hsl(245 22% 80% / 1) !important;
}

.css-1u9des2-indicatorSeparator {
    color: hsl(245 22% 80% / 1) !important;
}

.custSpacing {
    margin-bottom: 16px;
}

.custSpacing-sponser {
    margin-bottom: 7px;
}

.mask {
    height: 420px;
    width: auto;
    object-fit: cover;
}

@media only screen and (max-width: 767px) {
    .custSpacing {
        margin: 16px 0;
    }

    .reward .pf-content {
        padding: 40px 16px !important;
    }

    .reward .rewardHis .pf-content {
        padding: 16px 0px !important;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px !important;

}

@media only screen and (min-width: 767px) {
    .footer-links {
        justify-content: right;
    }
}

/* @media only screen and (max-width: 767px) {
    .footer-links {
        display: contents;
    }
} */

.form-control:focus {
    color: #fff;
}


.text-detail {
    color: #E7F8FD;
    font-size: 16px;
    font-weight: 500;
}

.otp-input {
    font-family: "noka" !important;
    font-weight: 500;
    font-size: 62.78px;
    color: #E7F8FD !important;
    padding: 5px;
    height: 80px;
    width: 57px;
    line-height: 100% !important;
    display: flex;
    vertical-align: middle !important;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.verifyMail-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 250px 0 185px 0;
}

.auth-container {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.auth-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 822px;
    width: 803px;
    background-image: url('../images/auth/Ellipse-2.png');
    background-position: top right;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.auth-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 422px;
    width: 403px;
    background-image: url('../images/auth/Ellipse-1.png');
    background-position: bottom left;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.auth-container .tm-footer {
    padding-top: 0 !important;
    position: absolute !important;
    bottom: 0 !important;
    width: 100%;
}

/* .auth-container .tm-header.tm-header-fixed{
    position: relative !important;
} */

.elips1-position {
    position: absolute;
    top: 230px;
    right: 128%;
}

.lock-img {
    height: 352px;
    width: auto;
    object-fit: cover;
    margin-left: 90px;
}

.epilise2 {
    height: auto;
    position: absolute;
    right: 133px;
    width: 780px;
    top: -20px;
}

.verification {
    margin-left: 50px;
}

.elips1-login-position {
    position: absolute;
    top: 314px;
    right: 149%;
}

.register-text {
    margin-top: 32px !important;
}


.elips1-position-email {
    position: absolute;
    top: 335px;
    right: 128%;
}

.elips1-reset-position {
    position: absolute;
    top: 401px;
    right: 149%;
}

.conditionLink:hover {
    text-decoration: underline !important;
}


/* Profile */

.pf-column-container {
    padding: 1px;
    width: auto;
    border-radius: 10px;
    background: linear-gradient(-90deg,
            #7209B780 0%,
            #554578 47%,
            #e7f9fd6b 100%);
}

.pf-column-content {
    background-color: #22075f;
    border-radius: 10px;
    width: auto;
}

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

.change-password-card {

    padding: 40px 60px 40px 60px;
    gap: 20px;
    border-radius: 10px 0px 0px 0px;
    border: 1px 0px 0px 0px;
    opacity: 0px;
    border: 1px solid;
    background-color: #ffffff00;
    border-image-source: linear-gradient(96.2deg, rgba(231, 248, 253, 0.5) -12.69%, rgba(114, 9, 183, 0.5) 110.09%);
}

.pf-column-content p {
    color: #ffffff;
}

.cp-form {
    max-width: 500px;
}

.cp-content-fields .form-control {
    height: 43px !important;
}

.cp-content-fields .fs-18 {
    position: relative;
    top: 2px;
}

.heading-text-cp {
    margin-bottom: 50px;
    color: #E7F8FD;
    font-size: 41px;
    font-weight: 700;
}

.pf-content {
    border: solid 1px #7209B780;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 4px 24px -1px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: center;
    padding: 60px;
    position: relative;



}




.pf-frame {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
}

.pf-frame-header {
    color: rgba(231, 248, 253, 1);
    font: 700 41px Inter;
}

.cp-content-fields {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: start;
    z-index: 1;
}

.pf-button,
.voucher-button{
    width: 160px;
    height: 51px;
    padding: 0.75rem;
    background-color: #4C83F0;
    color: #22075F;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    margin-top: 15px;
    letter-spacing: 1px;
    font-family: Inter !important;
}
.pf-button-sm,.pf-button-outline{
    padding: 3px 12px;
    height: fit-content;
    background-color: #4C83F0;
    color: #22075F;
    width: fit-content;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-family: Inter !important;
}
.pf-button-sm:not(:disabled):hover {
    background: #4CC9F0 !important;
}
.pf-button-sm:disabled {
    cursor: not-allowed !important;
}
.pf-button-secondary{
    background-color: #7209B7 !important;
    color: #fff;
}
.pf-button-secondary:hover{
    color: #000 !important;
}
.w-fit{
    width: fit-content !important;
}
/* .claim-btn{
    position: absolute;
    right: 20px !important;
} */
.voucher-button {
    text-decoration: none !important;
    color: #22075F !important;
}

div:where(.swal2-container) div:where(.swal2-popup) {
    background-color: #1f0d48 !important;
    border: 1px solid #1f0d48 !important;
    width: 315px !important;
    color: #fff !important;
    padding: 0 0 15px !important;
    box-shadow: 0 .75rem 6rem rgba(56, 65, 74, .03) !important;
}

div:where(.swal2-icon) {
    margin: 15px auto 0px !important;
}


div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
    background-color: #720ab7 !important;
    color: #fff;
}

div:where(.swal2-container) h2:where(.swal2-title) {
    padding: 15px 30px 0 !important;
}

div:where(.swal2-container) div:where(.swal2-actions) {
    margin: 10px auto 0 !important;
}

div:where(.swal2-container) .swal2-html-container {
    padding: 9px 30px 0px !important;
}

.cp-epilise2 {
    height: auto;
    position: absolute;
    width: 780px;
    top: -40%;
    right: 0;
}

.cp-epilise1 {
    height: auto;
    position: absolute;
    left: -250px;
    width: 780px;
    bottom: -150px;
}

@media screen and (max-width: 1200px) {
    .auth-container::after {
        width: 700px;
        height: 722px;
    }

    .auth-container::before {
        width: 300px;
        height: 322px;
    }
}

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

    .auth-container::after,
    .auth-container::before {
        display: none;
    }
}

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

    .cp-epilise2,
    .cp-epilise1 {
        display: none;
    }
}


@media screen and (max-width: 1032px) {
    .pf-frame-header {
        font: 700 38px Inter;
    }
}

@media screen and (max-width: 550px) {
    .pf-frame-header {
        font: 700 24px Inter;
    }

    .cp-content-fields .form-control::placeholder {
        font-size: 12px !important;
    }

    .pf-content {
        padding: 20px;
    }

    .pf-button {
        width: 113px;
    }
    .transactionPageContent .pf-content{
        padding: 20px !important;
    }
    .transactionPageContent .nav-tabs{
        width: auto !important;
    }
    .transactionPageContent .voucher-history-tabbtn{
        margin: 0 auto !important;
    }
    .voucher-button {
        font-size: 14px !important;
        padding: 6px 10px !important;
    }

    .footer-links {
        gap: 10px !important;
    }
}

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

    .tm-footer .container-fluid,
    .tm-header .container-fluid {
        padding: 0 15px;
    }

    .tm-footer-social li {
        font-size: 15px;
    }

    .tm-header-logo {
        max-width: 130px;
    }

    .tm-header.tm-header-fixed {
        padding-top: 10px !important;
    }
}

.readOnlyInput {
    background-color: #E7F8FD50 !important;
}


.switchery {

    background-color: rgb(100, 176, 242);
    box-shadow: rgb(146, 97, 198) 0px 0px 0px 16px inset;
    transition: border 0.4s, box-shadow 0.4s, background-color 1.2s;
    border-radius: 20px;
    height: 20px;
    width: 33px;
    background-color: #fff;
    border: 2px solid rgb(119 46 197);
    cursor: pointer;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-sizing: content-box;
    background-clip: content-box;
}

.switchery>small {
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    height: 30px;
    position: absolute;
    top: 0;
    width: 30px;
    left: 13px;
    transition: background-color 0.4s, left 0.2s;
    background-color: rgb(255, 255, 255);
    height: 20px;
    width: 20px;
}


.togggleOff .switchery {
    border: 2px solid rgb(147 73 227) !important;
    background-color: rgb(255, 255, 255) !important;
    box-shadow: rgb(223, 223, 223) 0px 0px 0px 0px inset !important;
    transition: border 0.4s, box-shadow 0.4s !important;
}

.togggleOff .switchery>small {
    background-color: rgb(203 203 203 / 81%) !important;
    left: 0px !important;
    transition: background-color 0.4s, left 0.2s !important;
}

.togggleOff .switchery>small {
    left: 0px !important;
    transition: background-color 0.4s, left 0.2s !important;
}

.cp-col {
    padding: 10px !important;
}
.auth-container-sub{
    min-height: 910px;
}
@media screen and (max-width: 1024px) {
    .auth-container-sub{
    min-height: 750px;
}
}