@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
/* update 20230524 */

* {
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
}

body,
html {
    height: 100%;
    width: 100%
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background-color: #fff;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

/* common class */

.text-400-16 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

.text-700-16 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
}

.text-700-18 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}

.text-500-14 {
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
}

.text-700-20 {
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
}

.width-50 {
    width: 50%;
}

.margin-top-24 {
    margin-top: 24px;
}

.margin-top-6 {
    margin-top: 6px;
}

.color-7D7D7D {
    color: #7D7D7D;
}

.relative {
    position: relative;
}

.cursor-pointer {
    cursor: pointer;
}

.ml--1 {
    margin-left: -2.5px;
}

.ml-9 {
    margin-left: 9px;
}
.ml-6 {
    margin-left: 4px;
}

/*end common class */

/* remove input number arrow */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* end remove input number arrow */

.main_container {
    position: relative;
    z-index: 2;
}

.error-message {
    color: #FF7337;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    margin-top: 8px;
}

.ids_header {
    z-index: 2;
    position: relative;
    height: 80px;
    width: 100%;
    box-shadow: 0px 2px 8px #aaaaaa;
}

.logo_content {
    position: relative;
    display: table;
    overflow: hidden;
    width: 100%;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.logo {
    display: table-cell;
    vertical-align: middle;
    padding-left: 165px;
}

.logo_img {
    width: 192px;
    height: 46px;
}

.main-section {
    display: flex;
}

.main-section__left {
    width: 50%;
    min-height: calc(100vh - 80px);
    background-color: #FADF4A;
    position: relative;
}

.main-section__left_body {
    position: absolute;
    width: auto;
    height: auto;
    top: 13vh;
    right: 165px;
}

.main-section__left__title {
    margin-bottom: 6vh;
    text-align: center;
}

    .main-section__left__title > span {
        font-size: 32px;
        font-weight: 700;
        line-height: 38px;
    }

.main-section__left__img > img {
    width: 375px;
    height: 350px;
}

.main-section__right {
    width: 50%;
    min-height: calc(100vh - 80px);
    position: relative;
}

.main-section__right__form-container {
    position: absolute;
    top: 70px;
    left: 109px;
    width: 475px;
    height: auto;
    max-height: 600px;
    border-radius: 20px;
    box-shadow: 1px 1px 3px 1px #F0F0F0, -1px -1px 3px 1px #F0F0F0;
    padding-left: 32px;
    padding-right: 32px;
}

.main-section__right__form-title {
    margin-top: 56px;
    position: relative;
}

    .main-section__right__form-title > h3 {
        font-size: 24px;
        font-weight: 600;
        line-height: 30px;
        letter-spacing: 0.2px;
        margin: 0;
    }

    .main-section__right__form-title > p {
        font-size: 14px;
        font-weight: 500;
        line-height: 24px;
        letter-spacing: 0.2px;
        margin: 0;
        color: #B5B5B5;
    }

.main-section__right__form-input {
    margin-top: 36px;
    /* margin-bottom: 36px; */
}

.main-section__right__form-password {
    margin-top: 36px;
}

.main-section__right__form-referral {
    margin-top: 24px;
}


.show-input {
    display: block;
    transition: opacity 0.6s linear;
}

.hide-input {
    display: none;
    transition: opacity 0.6s linear;
}

.eye_button {
    cursor: pointer;
    filter: invert(40%) sepia(100%) saturate(0%) hue-rotate(48deg) brightness(99%) contrast(103%);
    fill-opacity: 1;
}

.form-password-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 13px;
}

.input-style {
    padding: 16px;
    width: 100%;
    height: 56px;
    border-radius: 10px;
    border: solid 1px #F0F0F0;
    display: flex;
    background-color: #FFFFFF;
    align-items: center;
}

    .input-style > i {
        color: #000000;
        opacity: 0.35;
    }

    .input-style > img {
        color: #000000;
    }



    .input-style > input {
        width: 100%;
        height: 22px;
        border-style: none;
        background: transparent;
        outline: none;
        line-height: 24px;
        font-weight: 500;
        letter-spacing: 0.2px;
        font-size: 16px;
        padding: 0;
    }

        .input-style > input::placeholder {
            color: #B5B5B5;
            font-size: 16px;
            line-height: 24px;
            font-weight: 500;
            letter-spacing: 0.2px;
        }

.main-section__right__form-button {
    margin-top: 24px;
}

.button-style {
    width: 100%;
    height: 56px;
    text-align: center;
    border-radius: 28px;
    background-color: #FADF4A;
    border: none;
    border-style: none;
    outline: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

    /* update 20230524 */
    .button-style:active {
        border: none;
        outline: none;
    }

    /* update 20230524 */
    .button-style:focus {
        border: none;
        outline: none;
    }

.button-second-style {
    width: 100%;
    height: 56px;
    text-align: center;
    border-radius: 28px;
    background-color: #F7F7F7;
    border: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

    /* update 20230524 */
    .button-second-style:focus {
        border: none;
        outline: none;
    }

.button-style-360-46 {
    width: 360px;
    height: 46px;
    text-align: center;
    border-radius: 28px;
    background-color: #FADF4A;
    border: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

    /* update 20230524 */
    .button-style-360-46:focus {
        border: none;
        outline: none;
    }

.button-style-360-44 {
    width: 360px;
    height: 44px;
    text-align: center;
    border-radius: 28px;
    background-color: #FADF4A;
    border: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

    /* update 20230524 */
    .button-style-360-44:focus {
        border: none;
        outline: none;
    }

.button-style-full-44 {
    width: 100%;
    height: 44px;
    text-align: center;
    border-radius: 28px;
    background-color: #FADF4A;
    border: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

    /* update 20230524 */
    .button-style-full-44:focus {
        border: none;
        outline: none;
    }

.main-section__right__form-logovpps {
    position: absolute;
    top: -40px;
    right: -12px;
}

    .main-section__right__form-logovpps > img {
        width: 115px;
        height: 46px;
    }

.main-section__right__form-footer {
    margin-top: 20vh;
    margin-bottom: 5vh;
    text-align: center;
}

.main-section__right__createpass-footer {
    margin-top: 9vh;
    margin-bottom: 5vh;
    text-align: center;
}

    .main-section__right__form-footer > img,
    .main-section__right__createpass-footer > img {
        width: 205px;
        height: 40px;
    }

    .main-section__right__form-footer > img,
    .main-section__right__createpass-footer > p {
        font-size: 13px;
        font-weight: 400;
        line-height: 10.4px;
        color: #5F5F5F;
        margin: 0;
        margin-top: 3px;
    }

.modal-content {
    position: relative;
    outline: none;
    border-radius: 16px;
    width: 640px;
    height: 400px;
}

.modal-body {
    padding: 24px;
}

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

.otp-modal-header {
    position: relative;
    text-align: center;
    padding-top: 24px;
}

.otp-modal-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
}

.otp-close-button {
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 50%;
    background-color: #F3F3F3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
}

.otp-body_description {
    text-align: center;
}



.otp-body-inputs {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 24px;
}

.otp-input-style {
    width: 53.5px;
    height: 67px;
    background-color: #F4F4F4;
    border: none;
    border-radius: 10px;
    text-align: center;
}

.otp-countdown-text {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

/* update 20230524 */
.otp-modal-footer {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 26px;
}

.mt-4 {
    margin-top: 4px;
}

.custom-control-input {
    width: 20px;
    height: 20px;
}

.custom-control-label {
    color: #B5B5B5;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    /*padding-top: 2.1px;*/
    padding-left: 6px;
    /*padding-top: 4px;*/
    margin-top: -1.3px;
}
.custom-control-label::before {
    margin-top: -6px;
    width: 20px !important;
    height: 20px !important;
}

.custom-control-label::after {
    margin-top: -5px;
}

.custom-control-input-green:focus ~ .custom-control-label::before {
    border-color: #FADF4A !important;
    /* box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important; */
}

.custom-control-input-green:checked ~ .custom-control-label::before {
    border-color: #FADF4A !important;
    background-color: #FADF4A !important;
}

.custom-control-input-green:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #FADF4A !important;
}

.custom-control-input-green:not(:disabled):active ~ .custom-control-label::before {
    background-color: #000000 !important;
    border-color: #000000 !important;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    width: 20px;
    height: 20px;
    background-image: url('../images/checkbox_label_icon.png');
}

/* create-pass page */

.form-create-password-option {
    display: flex;
    gap: 2px;
    margin-top: 13px;
    font-size: 14px;
    line-height: 17px;
    color: #979797;
}

.text-term {
    color: #FFC92F;
    outline: none;
    font-weight: 600;
}

    .text-term:hover {
        color: #FFC92F;
        outline: none;
        font-weight: 600;
    }

.text-forgotpass {
    color: #FFC92F;
}

.main-section__right__createpass-button {
    display: flex;
    gap: 15px;
    margin-top: 18px;
}

/* success-modal */

.success-modal_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
}

.success-body_description {
    text-align: center;
    margin-top: 40px;
}

/* update 20230524 */
.success-modal-footer {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 32px;
}

/* reset pass modal */

.otp-modal-reset-header {
    position: relative;
    padding-top: 24px;
    padding-right: 24px;
    padding-left: 24px;
}

.reset-input-group {
    display: flex;
    gap: 20px;
    width: 100%;
}

/* update 20230524 */
.reset-modal-footer {
    width: calc(100% - 48px);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    bottom: 28px;
    right: 24px;
}

/* error style */

.input-style.error {
    padding: 17px;
    width: 100%;
    height: 56px;
    border-radius: 10px;
    border: solid 1px #FF7337;
    background-color: #FFEDE9;
    display: flex;
}

    .input-style.error > i {
        color: #FF7337;
        opacity: 1;
    }

    .input-style.error ~ img {
        color: #FF7337;
        opacity: 1;
    }

    .input-style.error > .color-svg {
        filter: invert(61%) sepia(58%) saturate(5375%) hue-rotate(338deg) brightness(101%) contrast(100%);
        opacity: 1;
    }

    .input-style.error > input {
        width: 100%;
        height: 22px;
        border-style: none;
        background: transparent;
        outline: none;
        line-height: 24px;
        font-weight: 500;
        letter-spacing: 0.2px;
        font-size: 16px;
        color: #FF7337;
        padding: 0;
    }

.warning-content {
    width: 488px;
    color: #7D7D7D;
}

.warning-content-container {
    display: flex;
    justify-content: center;
}
@media only screen and (max-width: 1024px) {
    .main-section__left {
        width: 50%;
        min-height: calc(100vh - 80px);
        background-color: #FADF4A;
        position: relative;
        display: none;
    }

    .main-section__right {
        width: 100%;
        min-height: calc(100vh - 80px);
        position: relative;
        padding-left: 16px;
        padding-right: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-section__right__form-container {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        max-height: 600px;
        border-radius: 20px;
        box-shadow: 1px 1px 3px 1px #F0F0F0, -1px -1px 3px 1px #F0F0F0;
        padding-left: 32px;
        padding-right: 32px;
        max-width: 475px;
    }

    .logo {
        /* display: table-cell;
        vertical-align: middle; */
        padding-left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

        .logo > a {
            margin: 0 auto;
            width: auto;
            height: auto;
        }
}