:root {
    --iostem-blue: #1abcfe;
    --iostem-orange: #ff6200;
    --iostem-yellow: #f9cc3b;
    --white: #ffffff;
    --black: #000000;
    --neutral-20: #d9ddea;
    --text-color-primary: #252525;
    --grey-300: #ced2d6;
    --space-sm: 8px;
    --space-md: 12px;
    --space-base: 16px;
    --space-lg: 20px;
    --space-xl: 24px;
}

body {
    font-family: Montserrat;
}
.plf-20{
    padding-left:20px;
}
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.iostem-header a {
    font-family: Montserrat;
    font-weight: 600;
    text-decoration: none;
}

.iostem-header li.active a {
    color: rgba(4, 207, 215, 1);
    font-weight: 700;
}

.iostem-header li:hover a {
    text-decoration: none;
}

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

html.body-no-scroll,
body.body-no-scroll {
    /*    overflow: hidden !important;
    height: 100vh !important;
    overscroll-behavior: none !important;*/
    position: fixed;
    width: 100%;
    overflow: hidden;
    left: 0;
    right: 0;
}

.flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: start;
    align-items: center;
    gap: var(--space-md);
}

.flex-column {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: start;
    align-items: center;
    gap: var(--space-md);
}

.text-error {
    color: #dc3545;
    font-size: 14px;
}

    .text-error.text-center {
        width: 100%;
        text-align: center;
    }

#cf-turnstile {
    position: fixed;
    z-index: 1000;
    bottom: 0;
    right: 0;
}

.readonly {
    pointer-events: none !important;
    background: rgba(226, 232, 240, 1) !important;
}

    .readonly:hover {
        cursor: not-allowed !important;
    }

[iostem-container] input:read-only {
    background: #f0f0f0;
    pointer-events: none;
}

.normal-button {
    width: 100%;
    max-width: 340px;
    position: relative;
    padding: 20px 24px;
    border-radius: 16px;
    overflow: hidden;
    color: var(--iostem-orange);
    font-family: "Montserrat-Bold";
    background: var(--white);
    box-shadow: 0px 5px 30px 0px rgba(174, 113, 41, 0.8), 0px 10px 30px 0px rgba(232, 205, 110, 0.2), -20px -20px 50px 0px rgba(211, 70, 155, 0.4);
    border-bottom: 4px solid #f24e1d;
}

    .normal-button span {
        color: var(--iostem-orange);
        position: relative;
        z-index: 1;
    }

    .normal-button::after {
        width: 0;
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, var(--iostem-orange), var(--iostem-yellow));
        border-radius: 12px;
        transition: all 0.3s ease;
        z-index: 0;
    }

    .normal-button:hover::after {
        width: 100%;
    }

.iostem-header .box-infor {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 30;
    max-width: 150px;
    cursor: pointer;
    font-family: Montserrat;
}

    .iostem-header .box-infor .infor-user {
        display: flex;
        flex-wrap: wrap;
        color: rgba(37, 37, 37, 1);
        max-width: 130px;
        margin-right: 6px;
    }

        .iostem-header .box-infor .infor-user .userName {
            width: 100%;
            font-size: 14px;
            font-weight: 700;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }

    .iostem-header .box-infor .btn-show-logout {
        cursor: pointer;
        margin-left: 6px;
        width: 20px;
        display: contents;
    }

    .iostem-header .box-infor .infor-user .userId {
        width: 100%;
        font-size: 14px;
    }

    .iostem-header .box-infor .box-logout {
        position: absolute;
        width: fit-content;
        min-width: 220px;
        z-index: 30;
        right: -20px;
        top: calc(100% + 10px);
        border-radius: 10px;
        padding: 20px 30px;
        background: #212529;
        background: #fff;
        display: none;
    }

        .iostem-header .box-infor .box-logout [iostem-wrap-logout] {
            position: relative;
            width: 100%;
            height: 100%;
        }

            .iostem-header .box-infor .box-logout [iostem-wrap-logout]::before {
                content: "";
                position: absolute;
                z-index: 100;
                width: 15px;
                height: 15px;
                background: #fff;
                top: -27px;
                right: -8px;
                transform: rotate(45deg);
            }

        .iostem-header .box-infor .box-logout [iostem-menu-link] {
            color: rgba(37, 37, 37, 1);
            display: inline-block;
            font-size: 14px;
            padding: 6px;
            width: 100%;
        }

            .iostem-header .box-infor .box-logout [iostem-menu-link]:hover {
                color: #f24e1e;
            }

.header-top-active .box-infor .infor-user {
    color: #fff;
}

[group=iostem-button] {
    outline: none;
    border: none;
    border-radius: 1rem;
    box-shadow: 0rem 0.25rem 0rem rgb(255, 98, 0), -1.25rem -1.25rem 3.125rem rgba(211, 70, 155, 0.4), 0rem 1.25rem 3.75rem rgba(232, 205, 110, 0.2), 0rem 0.625rem 3.75rem rgba(174, 113, 41, 0.8);
    background: linear-gradient(90deg, #ff6200 0%, #f9cc3b 100%);
    padding: 0.625rem 1rem;
    font-family: "Be Vietnam Pro Bold";
    min-width: 10rem;
    color: white;
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

    [group=iostem-button]:hover, [group=iostem-button]:active {
        transform: translateY(6%);
        box-shadow: 0rem 0rem 0rem rgb(255, 98, 0), -1.25rem -1.25rem 3.125rem rgba(211, 70, 155, 0.4), 0rem 1.25rem 3.75rem rgba(232, 205, 110, 0.2), 0rem 0.625rem 3.75rem rgba(174, 113, 41, 0.4);
        background: white;
        color: orange;
    }

    [group=iostem-button][fullWidth] {
        display: block;
        width: 100%;
    }

.feature-card {
    width: 100%;
    max-width: 384px;
    padding: 1.5rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    text-align: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1490196078);
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-card--header {
    width: 100%;
    text-align: center;
    color: var(--iostem-yellow);
    font-family: "Be Vietnam Pro Bold";
    font-size: clamp(16px, 16px + 0.5vw, 20px);
}

.feature-card--body {
    width: 100%;
    flex: 1;
    text-align: center;
    font-size: clamp(12px, 12px + 0.5vw, 16px);
    line-height: 1.4;
}

.feature-card--footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes scaleIn {
    from {
        bottom: -10%;
        right: 0%;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounceUp {
    from {
        opacity: 0;
    }

    50% {
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.25);
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotate360 {
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounceUpSpecial {
    50% {
        transform: translate(-50%, -12px);
    }

    to {
        transform: translate(-50%, 0);
    }
}

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.5;
    font-family: inherit;
    background: #fff;
    color: #000;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-size: inherit;
    font-weight: normal;
    line-height: 1.4;
}

p {
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

    a:hover, a:focus {
        text-decoration: none;
    }

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

button,
input,
select,
textarea {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
    outline: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.iostem-section {
    width: 100%;
}

    .iostem-section .iostem-section-wraper {
        max-width: 1200px;
        margin: 0 auto;
        padding: max(2rem, 2%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        color: var(--white);
    }

    .iostem-section .section-title {
        width: 100%;
        font-size: clamp(24px, 16px + 1vw, 48px);
        color: #1abcfe;
        font-family: "Be Vietnam Pro Bold";
        margin-bottom: 1rem;
    }

        .iostem-section .section-title span {
            color: #f9cc3b;
        }

    .iostem-section .section-desc {
        width: 100%;
        font-size: clamp(14px, 14px + 0.5vw, 18px);
        line-height: 1.4;
        max-width: 64%;
        margin: 0 auto;
    }

    .iostem-section .section-header {
        width: 100%;
        text-align: center;
    }

    .iostem-section .section-body {
        width: 100%;
    }

[data-type=iostem-tab] {
    max-width: 588px;
    margin: 0 auto 1rem auto;
    border: none;
    justify-content: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    [data-type=iostem-tab] {
        justify-content: center;
    }
}

[data-type=iostem-tab] .nav-item {
    border-radius: 24px;
    padding: 8px 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background-color: #d9d9d9;
    border: 1px solid transparent;
}

    [data-type=iostem-tab] .nav-item:has(.active) {
        background-color: #e3f2fd;
        border: 1px solid var(--iostem-blue);
    }

        [data-type=iostem-tab] .nav-item:has(.active)::before {
            color: white;
            background-color: var(--iostem-blue);
        }

    [data-type=iostem-tab] .nav-item:not(:has(.active)) {
        user-select: none;
        pointer-events: none;
        cursor: not-allowed;
    }

    [data-type=iostem-tab] .nav-item[data-step]::before {
        content: attr(data-step);
    }

    [data-type=iostem-tab] .nav-item::before {
        content: "";
        color: #6a7580;
        background-color: white;
        width: 28px;
        height: 28px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        font-family: "Be Vietnam Pro Bold";
    }

[data-type=iostem-tab] .nav-link {
    border: none;
    background-color: transparent !important;
    padding: 0;
    color: white;
}
    /*.nav-tabs.disable {
    pointer-events: none;
    cursor: not-allowed;
}*/

    [data-type=iostem-tab] .nav-link.active {
        color: var(--iostem-blue);
        font-family: "Be Vietnam Pro Bold";
    }

.grid-layout {
    width: 100%;
    display: grid;
    gap: 1.5rem;
}

.grid-layout--cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.auth-layout {
    width: 100%;
    min-height: 100vh;
    margin: auto;
    background-image: url("../images/bg_auth_page.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    padding-top: 1rem;
    padding-bottom: 8vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .auth-layout {
        padding-bottom: 12vh;
    }
}

.auth-container {
    width: calc(100% - 32px);
    max-width: 580px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 2.5rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: white;
    color: var(--text-color-primary);
}

@media (max-width: 768px) {
    .auth-container {
        padding: 2rem 1rem;
    }
}

.auth-container.lg-container {
    max-width: 1200px;
}

.auth-container .auth-header {
    width: 100%;
    text-align: center;
}

    .auth-container .auth-header .auth-title {
        font-size: clamp(24px, 24px + 1vw, 40px);
        font-family: "Be Vietnam Pro Bold";
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .auth-container .auth-header .auth-desc {
        font-size: clamp(12px, 12px + 0.5vw, 16px);
        line-height: 1.4;
        color: rgba(100, 116, 139, 1);
    }

        .auth-container .auth-header .auth-desc span {
            color: var(--iostem-blue);
        }

.auth-container .auth-body {
    width: 100%;
}

    .auth-container .auth-body [input-wrapper] {
        background: rgba(248, 250, 252, 1) !important;
        padding: 0;
    }

        .auth-container .auth-body [input-wrapper] input[name=accountName] {
            margin-left: 0;
            color: rgba(100, 116, 139, 1);
            padding: 6px 12px;
        }

.auth-container .auth-footer {
    width: 100%;
    color: #64748b;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #d9ddea;
    font-size: clamp(12px, 12px + 0.125vw, 14px);
}

    .auth-container .auth-footer .note {
        width: 100%;
        text-align: center;
        padding: 0 45px;
    }

    .auth-container .auth-footer a[data-tag="support-link"] {
        margin-top: 10px;
        font-size: 14px;
        color: rgba(34, 154, 214, 1);
        width: 100%;
        display: inline-block;
    }

    .auth-container .auth-footer a:hover {
        transform: none;
    }

    .auth-container .auth-footer.noBorder {
        border-top: none;
    }

    .auth-container .auth-footer .register-link {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        color: #64748b;
        font-size: clamp(12px, 12px + 0.5vw, 16px);
        line-height: 1.4;
    }

.auth-container [group=iostem-button] {
    width: 100%;
    min-height: 64px;
    box-shadow: none;
    border-bottom: 4px solid #f9cc3b;
}

    .auth-container [group=iostem-button]:hover, .auth-container [group=iostem-button]:active {
        background: linear-gradient(90deg, #ff6200 0%, #f9cc3b 100%);
        color: white;
        border-bottom: none;
    }

    .auth-container [group=iostem-button]:disabled {
        background: #dadee3 !important;
        pointer-events: none;
        cursor: not-allowed;
        border-bottom: none;
    }

.iostem-oauth-footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    backdrop-filter: blur(2px);
    background: rgba(255, 255, 255, 0.25);
    padding: 1rem;
    height: 7.5vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color-primary);
}

@media (max-width: 768px) {
    .iostem-oauth-footer {
        height: fit-content;
    }
}

[iostem-form] {
    width: 100%;
    max-width: 588px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

    [iostem-form][fullWidth] {
        max-width: 800px;
    }

    [iostem-form] button[data-status] {
        width: 24px;
        height: 24px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        cursor: pointer;
    }

    [iostem-form] button[data-status=enable] {
        background-image: url("../images/ic_eye_slash.png");
    }

    [iostem-form] button[data-status=disable] {
        background-image: url("../images/ic_eye.png");
    }

    [iostem-form] .form-meta {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        color: #64748b;
        font-size: 14px;
    }

        [iostem-form] .form-meta [data-name=rule-accept] {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

    [iostem-form] .list-input-radio {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

@media (max-width: 576px) {
    [iostem-form] .list-input-radio {
        flex-direction: column;
        gap: 0.5rem;
    }

        [iostem-form] .list-input-radio [input-radio] {
            margin-top: 0;
        }

            [iostem-form] .list-input-radio [input-radio]:first-child {
                margin-top: 0.5rem;
            }
}

[iostem-form] .list-input-radio [input-radio] {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.5rem;
    border: none;
    background-color: transparent;
    min-height: unset;
    padding-left: 1.5rem;
    position: relative;
    z-index: 0;
}

    [iostem-form] .list-input-radio [input-radio] input {
        display: none;
    }

    [iostem-form] .list-input-radio [input-radio] label {
        margin-bottom: 0;
    }

    [iostem-form] .list-input-radio [input-radio]::before {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        content: "";
        border-radius: 50%;
        width: 20px;
        height: 20px;
        border: 1px solid #1abcfe;
        z-index: 1;
    }

    [iostem-form] .list-input-radio [input-radio]::after {
        position: absolute;
        top: 50%;
        left: 4px;
        transform: translateY(-50%);
        content: "";
        border-radius: 50%;
        width: 12px;
        height: 12px;
        background-color: transparent;
        z-index: 2;
    }

    [iostem-form] .list-input-radio [input-radio]:has(input[checked])::after {
        background-color: #1abcfe;
    }

[iostem-form] .rules-val {
    margin-top: 0.75rem;
}

    [iostem-form] .rules-val input {
        display: none;
    }

    [iostem-form] .rules-val [data-name=rule-checkbox] {
        margin-bottom: 0.5rem;
        font-size: 12px;
        line-height: 1.4;
        color: #9c9c9c;
        display: flex;
        align-items: center;
        gap: 0.25rem;
        position: relative;
        padding-left: 1.75em;
    }

    [iostem-form] .rules-val .rule-check-pass {
        display: none;
    }

    [iostem-form] .rules-val [data-name=rule-checkbox] label[for=rule-confirm-1] {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        color: #dc3545;
    }

    [iostem-form] .rules-val [data-name="rule-checkbox"]:not(:has(label[for="rule-confirm-1"]))::after {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        content: "";
        border-radius: 50%;
        width: 16px;
        height: 16px;
        background-image: url("../images/ic_val_normal.png");
        background-repeat: no-repeat;
        background-size: 16px 16px;
        background-position: center;
    }

    [iostem-form] .rules-val [data-name=rule-checkbox] label[for=rule-confirm-1]::after {
        position: absolute;
        top: 50%;
        left: -1.75em;
        transform: translateY(-50%);
        content: "";
        border-radius: 50%;
        width: 16px;
        height: 16px;
        background-image: url("../images/ic_val_failed.png");
        background-repeat: no-repeat;
        background-size: 16px 16px;
        background-position: center;
    }

    [iostem-form] .rules-val .wrap-rule-confirm {
        display: none;
    }

    [iostem-form] .rules-val [data-name=rule-checkbox] label {
        margin-bottom: 0;
    }

    [iostem-form] .rules-val [data-name=rule-checkbox][data-status=passed]::after {
        background-image: url("../images/ic_val_passed.png") !important;
    }

    [iostem-form] .rules-val [data-name=rule-checkbox][data-status=failed]::after {
        background-image: url("../images/ic_val_failed.png") !important;
    }

[iostem-form] .password-error {
    color: #dc3545;
    font-size: 14px;
    display: none;
}

.form-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
    margin: 2% 0 4%;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .form-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

[data-tag=custom-link] {
    color: var(--iostem-blue);
    font-family: "Be Vietnam Pro Bold";
    cursor: pointer;
    transition: 0.3s ease;
}

    [data-tag=custom-link]:hover {
        transform: scale(1.05);
    }

[iostem-input] {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

    [iostem-input] label {
        font-family: "Be Vietnam Pro Medium";
        margin-bottom: 8px;
    }

    [iostem-input] .text-error-username {
        display: none;
    }

    [iostem-input][suffix-input] input {
        margin-left: 2rem;
    }

    [iostem-input] [input-wrapper] {
        width: 100%;
        position: relative;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        background-color: #f8fafc;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        min-height: 48px;
        padding: 14px 12px;
    }

        [iostem-input] [input-wrapper]:has(input[type="text"], input[type="password"]) {
            background-color: #fff;
            padding-right: 12px;
        }

        [iostem-input] [input-wrapper] input::placeholder {
            font-size: 14px;
            color: #64748b;
        }

        [iostem-input] [input-wrapper] select {
            font-size: 14px;
            color: #64748b;
        }

    [iostem-input] .text-error-valid {
        width: 100%;
        font-size: 13px;
        font-style: italic;
        color: rgba(242, 78, 30, 1);
    }

    [iostem-input] [input-wrapper]:has(input[data-type]) {
        background-repeat: no-repeat;
        background-size: 20px 20px;
        background-position: 12px center;
    }

    [iostem-input] [input-wrapper]:has(input[data-type=password]) {
        background-image: url("../images/ic_prefix_password.png");
    }

    [iostem-input] [input-wrapper]:has(input[data-type=username]) {
        background-image: url("../images/ic_prefix_user.png");
    }

    [iostem-input] [input-wrapper]:has(input[data-type=phonenumber]) {
        background-image: url("../images/ic_prefix_phone.png");
        background-color: #f8fafc !important;
        padding: 14px 12px !important;
    }

    [iostem-input] [input-wrapper] input,
    [iostem-input] [input-wrapper] select {
        width: 100%;
    }

[forget-wrapper] {
    width: 100%;
    border-radius: 12px;
    border: 3px dotted #229AD6;
    background-color: #f8fafc;
    min-height: 48px;
    padding: 14px 12px;
    font-size: 15px;
}

[iostem-forget] label {
    margin-top: 10px;
}

[iostem-forget] em.sms-note {
    font-style: italic;
    color: #64748B;
}

[forget-wrapper] .sms-content {
    color: #229AD6;
    font-weight: 700;
}

[iostem-input] [input-custom] {
    background: none;
    border: none;
    padding: 0;
}

    [iostem-input] [input-custom] .select2-container {
        width: 100% !important;
    }

    [iostem-input] [input-custom] .select2-selection--single {
        width: 100%;
        position: relative;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        background-color: #f8fafc;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        min-height: 48px;
        padding: 14px 12px;
    }

        [iostem-input] [input-custom] .select2-selection--single .select2-selection__arrow {
            top: 50%;
            right: 27px;
            transform: translateY(-50%);
        }

[input-otp] {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #e5e7ea;
    background-color: #f0f2f5;
}

    [input-otp] label {
        color: var(--text-color-primary);
        font-family: "Be Vietnam Pro Medium";
        width: 100%;
        text-align: start;
        margin-bottom: 8px;
    }

    [input-otp] [otp-group] {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        margin: 1rem 0;
    }

        [input-otp] [otp-group] input {
            width: 48px;
            aspect-ratio: 1/1;
            border-bottom: 2px solid var(--grey-300);
            text-align: center;
            font-size: 32px;
            font-family: "Be Vietnam Pro Bold";
        }

            [input-otp] [otp-group] input::-webkit-inner-spin-button, [input-otp] [otp-group] input::-webkit-outer-spin-button {
                -webkit-appearance: none;
                margin: 0;
            }

            [input-otp] [otp-group] input:focus {
                border-color: #888888;
            }

@media (max-width: 768px) {
    [input-otp] [otp-group] input {
        width: 36px;
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    [input-otp] [otp-group] input {
        width: 32px;
        font-size: 24px;
    }
}

.sms-syntax {
    width: 100%;
    font-size: clamp(14px, 14px + 0.25rem, 16px);
    text-align: center;
    font-family: "Be Vietnam Pro Medium";
    line-height: 1.5;
    padding: 12px 16px;
    border: 1px dashed #229ad6;
    border-radius: 12px;
    margin-bottom: 1rem;
}

    .sms-syntax span {
        font-family: "Be Vietnam Pro Bold";
        color: var(--iostem-blue);
    }

[iostem-container] {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 40px;
}

    [iostem-container] [iostem-header] {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        position: relative;
    }

        [iostem-container] [iostem-header] h2 {
            width: 100%;
            font-size: 40px;
            font-family: "Be Vietnam Pro Medium";
            font-weight: 700;
            color: rgba(37, 37, 37, 1);
            padding-left: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        [iostem-container] [iostem-header] p {
            width: 100%;
            font-size: 14px;
            color: rgba(100, 116, 139, 1);
            text-align: center;
            font-family: "Be Vietnam Pro Medium";
        }
            [iostem-container] [iostem-header] p #infor-icon{
                cursor:pointer;
            }

            [iostem-container] [iostem-header] [iostem-label-secur] {
                color: rgba(37, 37, 37, 1);
            }

.tippy-box[data-theme~='iostem'] {
    padding: 20px 25px;
    border-radius: 12px;
    background: #f8fafc;
    width: max-content;
    min-width: 300px !important;
    box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.12);
}
    /* Arrow � depends on placement */
    .tippy-box[data-theme~='iostem'][data-placement^="top"] > .tippy-arrow::before {
        border-top-color: #f8fafc !important;
    }

    .tippy-box[data-theme~='iostem'][data-placement^="bottom"] > .tippy-arrow::before {
        border-bottom-color: #f8fafc !important;
    }

    .tippy-box[data-theme~='iostem'][data-placement^="left"] > .tippy-arrow::before {
        border-left-color: #f8fafc !important;
    }

    .tippy-box[data-theme~='iostem'][data-placement^="right"] > .tippy-arrow::before {
        border-right-color: #f8fafc !important;
    }

[iostem-container] [iostem-form-wrap] {
    width: 65%;
    margin: 0 auto;
    max-width: none;
    margin-top: 15px;
    background: rgba(255, 255, 255, 1);
    padding: 40px 74px;
    border-radius: 24px;
    box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}

    [iostem-container] [iostem-form-wrap] [iostem-form] {
        width: 100%;
        max-width: none;
        display: flex;
        flex-wrap: wrap;
        margin-top: 25px;
        flex-direction: row;
        gap: 0;
    }

        [iostem-container] [iostem-form-wrap] [iostem-form] [input-wrapper] {
            padding: 0;
        }

        [iostem-container] [iostem-form-wrap] [iostem-form] .row-input {
            margin-bottom: 30px;
            display: flex;
            padding: 0 8px;
        }

        [iostem-container] [iostem-form-wrap] [iostem-form] [iostem-input] {
            width: 100%;
        }

            [iostem-container] [iostem-form-wrap] [iostem-form] [iostem-input] input {
                padding-left: 10px;
            }

            [iostem-container] [iostem-form-wrap] [iostem-form] [iostem-input] select {
                width: 100%;
                height: 100%;
            }

        [iostem-container] [iostem-form-wrap] [iostem-form] [input-custom] [input-wrapper] {
            background: none;
            border: none;
        }

        [iostem-container] [iostem-form-wrap] [iostem-form] [input-custom] .select2-selection--single {
            width: 100%;
            position: relative;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            background-color: inherit;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
            min-height: 48px;
            padding: 14px 12px;
        }

            [iostem-container] [iostem-form-wrap] [iostem-form] [input-custom] .select2-selection--single .select2-selection__arrow {
                top: 50%;
                right: 27px;
                transform: translateY(-50%);
            }

        [iostem-container] [iostem-form-wrap] [iostem-form] [input-custom] .select2-container {
            width: 100% !important;
        }

        [iostem-container] [iostem-form-wrap] [iostem-form] .btn-update {
            width: 100%;
            margin-top: 15px;
            text-align: center;
            padding: 0 8px;
        }

            [iostem-container] [iostem-form-wrap] [iostem-form] .btn-update .btn-submit-update {
                width: 100%;
                padding: 17px 42px;
                color: #fff;
                font-size: 16px;
                border: 1px solid rgba(255, 98, 0, 0);
                transition: transform .15s cubic-bezier(.4, 0, .2, 1), box-shadow .2s cubic-bezier(.4, 0, .2, 1), -webkit-transform .15s cubic-bezier(.4, 0, .2, 1), -webkit-box-shadow .2s cubic-bezier(.4, 0, .2, 1);
                font-family: Montserrat;
                font-weight: 700;
                background: linear-gradient(to right,rgba(255, 98, 0, 1), rgba(249, 204, 59, 1));
                filter: drop-shadow(0 5px 0 rgba(242, 78, 30,1));
                border-radius: 16px;
            }

                [iostem-container] [iostem-form-wrap] [iostem-form] .btn-update .btn-submit-update:not(:disabled):hover {
                    color: #ffa500;
                    background: #fff;
                    transform: translateY(5px);
                    border: 1px solid rgba(255, 98, 0, 1);
                    filter: none;
                }

                [iostem-container] [iostem-form-wrap] [iostem-form] .btn-update .btn-submit-update:focus {
                    outline: none;
                    border: none;
                    box-shadow: none;
                }

                [iostem-container] [iostem-form-wrap] [iostem-form] .btn-update .btn-submit-update:disabled {
                    background: #dadee3 !important;
                    pointer-events: none;
                    cursor: not-allowed;
                }

[iostem-container] [iostem-account] {
    width: 100%;
    margin-top: 20px;
}

    [iostem-container] [iostem-account] [iostem-line-input] [iostem-button] {
        cursor: pointer;
        padding: 0.625rem 1.28rem;
        box-shadow: none;
        filter: drop-shadow(0 5px 0 rgba(242, 78, 30,1));
        /*border: 1px solid rgba(255, 98, 0, 0);*/
    }

        [iostem-container] [iostem-account] [iostem-line-input] [iostem-button]:hover {
            filter: none;
            border: 1px solid rgba(255, 98, 0, 1);
            box-shadow: none;
        }

    [iostem-container] [iostem-account] [iostem-label] {
        width: 100%;
        font-size: 18px;
        font-weight: 700;
        color: rgba(37, 37, 37, 1);
        font-family: "Be Vietnam Pro Bold";
    }

    [iostem-container] [iostem-account] [iostem-box-account] {
        width: 100%;
        border: 1px solid rgba(226, 232, 240, 1);
        background: rgba(248, 250, 252, 1);
        border-radius: 12px;
        padding: 0 20px;
        margin-top: 20px;
    }

    [iostem-container] [iostem-account] [iostem-line-input] {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        padding: 16px 0;
        justify-content: space-between;
        align-items: center;
    }

        [iostem-container] [iostem-account] [iostem-line-input]:first-child {
            border-bottom: 1px solid rgba(226, 232, 240, 1);
        }

        [iostem-container] [iostem-account] [iostem-line-input] [iostem-label] {
            width: fit-content;
            font-size: 14px;
            font-weight: 500;
            color: rgba(100, 116, 139, 1);
            font-family: "Be Vietnam Pro Medium";
        }

        [iostem-container] [iostem-account] [iostem-line-input] [iostem-value] {
            font-size: 16px;
            color: rgba(37, 37, 37, 1);
            font-family: "Be Vietnam Pro Medium";
        }

        [iostem-container] [iostem-account] [iostem-line-input] [iostem-wrap-label] {
            width: fit-content;
        }

            [iostem-container] [iostem-account] [iostem-line-input] [iostem-wrap-label] [iostem-label] {
                width: 100%;
                display: inline-block;
            }

        [iostem-container] [iostem-account] [iostem-line-input] [iostem-link] {
            font-size: 14px;
            color: rgba(26, 188, 254, 1);
            font-family: "Be Vietnam Pro Medium";
        }

            [iostem-container] [iostem-account] [iostem-line-input] [iostem-link]:hover {
                color: #ff6200;
            }

        [iostem-container] [iostem-account] [iostem-line-input] [iostem-support] {
            color: #252525;
            font-family: "Be Vietnam Pro Medium";
            font-weight: 500;
        }

            [iostem-container] [iostem-account] [iostem-line-input] [iostem-support] span {
                color: #29ABE2;
            }

.new-pass-container-layout {
    width: 100%;
    min-height: 100vh;
    padding-top: 30px;
}

.new-pass-container {
    width: 65%;
    margin-left: 17.5%;
    margin-top: 10px;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 24px;
    padding: 30px 15%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

    .new-pass-container h2 {
        width: 100%;
        text-align: center;
        font-size: 40px;
        color: rgba(37, 37, 37, 1);
        font-family: "Be Vietnam Pro Bold";
    }

    .new-pass-container .note {
        width: 100%;
        text-align: center;
        font-size: 16px;
        color: rgba(100, 116, 139, 1);
        margin-top: 10px;
    }

        .new-pass-container .note .phone-otp {
            font-weight: 700;
        }

    .new-pass-container .wrap-content {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 0%;
        padding-bottom: 25px;
        border-bottom: 2px solid rgba(217, 221, 234, 1);
    }

        .new-pass-container .wrap-content .box-syntax {
            width: 100%;
            border-radius: 12px;
            border: 1px dashed rgba(34, 154, 214, 1);
            padding: 12px 16px;
            gap: 10px;
            margin-top: 10px;
            text-align: center;
        }

            .new-pass-container .wrap-content .box-syntax .syntax-sms {
                width: 100%;
                font-size: 18px;
                color: rgba(37, 37, 37, 1);
                text-align: center;
                font-family: "Be Vietnam Pro Medium";
            }

        .new-pass-container .wrap-content .syntax-sms strong {
            color: rgba(26, 188, 254, 1);
        }

        .new-pass-container .wrap-content .qr-code-sms {
            width: 100%;
            text-align: center;
            margin-top: 18px;
        }

            .new-pass-container .wrap-content .qr-code-sms p {
                width: 100%;
                font-size: 16px;
                color: rgba(37, 37, 37, 1);
                margin-bottom: 15px;
                font-family: "Be Vietnam Pro Medium";
            }

            .new-pass-container .wrap-content .qr-code-sms .text-bold {
                font-weight: 700;
            }

            .new-pass-container .wrap-content .qr-code-sms .qr-code-img {
                max-width: 150px;
                padding: 8px;
                border: 1px solid rgba(26, 29, 31, 1);
                border-radius: 16px;
                margin: 0 auto;
            }

                .new-pass-container .wrap-content .qr-code-sms .qr-code-img img {
                    width: 100%;
                }

    .new-pass-container .box-pass-otp {
        width: 60%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

        .new-pass-container .box-pass-otp [iostem-input] {
            margin-top: 16px;
        }

            .new-pass-container .box-pass-otp [iostem-input] label {
                width: 100%;
                color: rgba(37, 37, 37, 1);
                font-size: 16px;
                font-family: "Be Vietnam Pro Bold";
            }

            .new-pass-container .box-pass-otp [iostem-input] [input-wrapper] {
                background-image: none;
                background: #fff;
                padding-left: 0;
            }

            .new-pass-container .box-pass-otp [iostem-input] input {
                margin-left: 0;
                padding-left: 1rem;
            }

            .new-pass-container .box-pass-otp [iostem-input] button[data-status] {
                width: 24px;
                height: 24px;
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
                cursor: pointer;
                background-size: 24px;
            }

            .new-pass-container .box-pass-otp [iostem-input] button[data-status=disable] {
                background-image: url(../images/ic_eye.png);
            }

            .new-pass-container .box-pass-otp [iostem-input] button[data-status=enable] {
                background-image: url(../images/ic_eye_slash.png);
            }

        /*      .new-pass-container .box-pass-otp [iostem-input] .text-error {
                display: none;
            }*/

        .new-pass-container .box-pass-otp .login-option {
            width: 100%;
            border: 1px solid rgba(229, 231, 234, 1);
            border-radius: 12px;
            padding: 16px 24px;
            background-color: rgba(229, 231, 234, 1);
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-top: 15px;
        }

            .new-pass-container .box-pass-otp .login-option label {
                width: 100%;
                font-size: 16px;
                color: rgba(37, 37, 37, 1);
                font-family: "Be Vietnam Pro Medium";
            }

            .new-pass-container .box-pass-otp .login-option [otp-note] {
                width: 100%;
                font-size: 11px;
                color: rgba(100, 116, 139, 1);
                font-family: "Be Vietnam Pro Medium";
            }

        .new-pass-container .box-pass-otp .otp-code-container {
            width: 100%;
            display: flex;
            flex-direction: column;
            flex-wrap: nowrap;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-top: 15px;
        }

            .new-pass-container .box-pass-otp .otp-code-container .error-otp {
                border-bottom: 3px solid rgba(243, 65, 65, 1);
            }

    .new-pass-container .login-option .cts-form-group {
        width: 100%;
    }

    .new-pass-container .box-pass-otp .otp-code-container .otp-wrapper {
        width: 100%;
        display: flex;
        padding: 0 10px;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
        align-items: center;
        gap: 0.5rem;
    }

        .new-pass-container .box-pass-otp .otp-code-container .otp-wrapper input {
            max-width: 50px;
            /* aspect-ratio: 1 / 1;*/
            text-align: center;
            border: none;
            background-color: transparent;
            border-bottom: 3px solid rgba(206, 210, 214, 1);
            font-size: 24px;
            font-family: "Inter-Bold";
            font-weight: bold;
            border-radius: 0;
        }

            .new-pass-container .box-pass-otp .otp-code-container .otp-wrapper input:valid {
                border-bottom: 3px solid rgba(69, 76, 82, 1);
            }

    .new-pass-container .box-btn {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 25px;
    }

        .new-pass-container .box-btn button {
            width: calc(50% - 10px);
            padding: 1rem 2rem;
            background-color: rgba(227, 243, 254, 1);
            font-size: 16px;
            color: rgba(4, 207, 215, 1);
            font-family: "Be Vietnam Pro Bold";
            border-radius: 16px;
            cursor: pointer;
        }

            .new-pass-container .box-btn button[type=reset] {
                margin-right: 10px;
            }

            .new-pass-container .box-btn button[type=submit]:not(:disabled) {
                margin-left: 10px;
                background: rgba(4, 207, 215, 1);
                color: #fff;
            }

            .new-pass-container .box-btn button[type=submit]:disabled {
                pointer-events: none;
                background: rgba(240, 242, 245, 1);
                color: rgba(100, 116, 139, 1);
            }

    .new-pass-container .popup-footer {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

        .new-pass-container .popup-footer .note-otp-email {
            width: 100%;
            font-size: 16px;
            color: rgba(26, 29, 31, 1);
            text-align: center;
            margin-top: 25px;
        }

            .new-pass-container .popup-footer .note-otp-email .color-red {
                color: rgba(243, 65, 65, 1);
                font-family: "Be Vietnam Pro Bold";
            }

        .new-pass-container .popup-footer .otp-footer-note {
            width: 100%;
            font-size: 14px;
            color: rgba(100, 116, 139, 1);
            margin-top: 25px;
        }

            .new-pass-container .popup-footer .otp-footer-note strong {
                color: rgba(100, 116, 139, 1);
                font-family: "Be Vietnam Pro Bold";
            }

            .new-pass-container .popup-footer .otp-footer-note a {
                color: rgba(26, 188, 254, 1);
                font-family: "Be Vietnam Pro Bold";
            }

.popup-overlay-page {
    display: flex;
    position: fixed;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.overlay-show {
    visibility: visible;
    opacity: 1;
}

.popup-overlay-page .popup-content {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px 35px 25px;
    font-family: 'Inter';
    min-width: fit-content;
    text-align: center;
    animation: scaleUp 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    top: 0;
    left: 0;
    transform: unset;
}

    .popup-overlay-page .popup-content .icon-close {
        position: absolute;
        width: 22px;
        height: 22px;
        z-index: 100;
        top: 20px;
        right: 20px;
        cursor: pointer;
    }

[iostem-popup-change-phone] {
    max-width: 735px;
    background: #fff;
    border-radius: 16px;
    padding: 10px 25px 0px 25px;
    animation: scaleUp 0.4s ease;
    text-align: left;
    position: relative;
    top: 0;
    left: 0;
    transform: unset;
}

    [iostem-popup-change-phone] h2 {
        width: 100%;
        font-size: 32px;
        color: rgba(37, 37, 37, 1);
        text-align: center;
        font-family: "Be Vietnam Pro Bold";
    }

    [iostem-popup-change-phone] .cts-form-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 16px;
    }

        [iostem-popup-change-phone] .cts-form-group label {
            width: 100%;
            font-size: 14px;
            color: rgba(37, 37, 37, 1);
            font-family: "Be Vietnam Pro Medium";
        }

        [iostem-popup-change-phone] .cts-form-group .input-wrapper {
            width: 100%;
            position: relative;
            margin-top: 10px;
        }

            [iostem-popup-change-phone] .cts-form-group .input-wrapper input {
                width: 100%;
                border-radius: 12px;
                border: 1px solid rgba(226, 232, 240, 1);
                padding: 14px 32px 14px 14px;
                box-shadow: 0px 0px 0px 1px #cdd1dc;
                color: rgba(37, 37, 37, 1);
                font-size: 14px;
                background: rgba(248, 250, 252, 1);
                font-family: "Be Vietnam Pro Medium";
            }

                [iostem-popup-change-phone] .cts-form-group .input-wrapper input::placeholder {
                    color: rgba(100, 116, 139, 1);
                }

.cts-form-group .input-wrapper .fixed-icon.clear-btn {
    display: none;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
}

[iostem-input] .fixed-icon.clear-btn {
    display: none;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
}

[iostem-popup-change-phone] .cts-form-group .bx-error {
    width: 100%;
    text-align: left;
}

    [iostem-popup-change-phone] .cts-form-group .bx-error i {
        color: #f34141;
    }

    [iostem-popup-change-phone] .cts-form-group .bx-error .error-message {
        margin-top: 0.25rem;
        color: #f34141;
        font-size: 14px;
        font-family: "Be Vietnam Pro Medium";
    }

[iostem-popup-change-phone] .box-btn {
    width: 100%;
    margin-top: 20px;
    padding-bottom: 10px;
}

    [iostem-popup-change-phone] .box-btn .btn-submit {
        width: 100%;
        min-height: 64px;
        box-shadow: none;
        font-family: "Be Vietnam Pro Bold";
        padding: 0.8rem 1rem;
        min-width: 10rem;
        display: flex;
        justify-content: center;
        align-items: center;
        outline: none;
        border-radius: 1rem;
        border: none;
    }


        [iostem-popup-change-phone] .box-btn .btn-submit:not(:disabled) {
            background: linear-gradient(90deg, #ff6200 0%, #f9cc3b 100%);
            color: white;
            transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border-bottom: 4px solid rgba(242, 78, 30, 1) !important;
            opacity: 1;
        }

            [iostem-popup-change-phone] .box-btn .btn-submit:not(:disabled):hover {
                border-bottom: none !important;
                transform: translateY(6%);
            }

        [iostem-popup-change-phone] .box-btn .btn-submit:disabled {
            background: rgba(240, 242, 245, 1);
            border-bottom: 4px solid rgba(37, 37, 37, 0.3);
            color: rgba(100, 116, 139, 1);
            border-bottom: none !important;
        }

[iostem-popup-change-phone] .popup-footer {
    width: 100%;
    margin-top: 5px;
    border-top: 1px solid rgba(217, 221, 234, 1);
}

    [iostem-popup-change-phone] .popup-footer .note-otp {
        width: 100%;
        padding: 0 15%;
        margin-top: 20px;
        line-height: 20px;
        font-size: 14px;
        color: rgba(100, 116, 139, 1);
        font-family: "Be Vietnam Pro Medium";
        text-align: center;
    }

        [iostem-popup-change-phone] .popup-footer .note-otp span:first-child {
            color: rgba(243, 65, 65, 1);
        }

        [iostem-popup-change-phone] .popup-footer .note-otp span:last-child {
            font-size: 15px;
            font-family: "Be Vietnam Pro Bold";
        }

.popup-overlay-page .popup-content .popup-change-phone {
    max-width: 736px;
}

    .popup-overlay-page .popup-content .popup-change-phone h2 {
        width: 100%;
        font-size: 32px;
        color: rgba(37, 37, 37, 1);
        font-family: "Be Vietnam Pro Bold";
        text-align: center;
    }

    .popup-overlay-page .popup-content .popup-change-phone .note {
        width: 100%;
        margin-top: 20px;
        display: inline-block;
        font-size: 16px;
        color: rgba(26, 29, 31, 1);
        text-align: center;
        font-family: "Be Vietnam Pro Bold";
    }

    .popup-overlay-page .popup-content .popup-change-phone .box-support {
        width: 100%;
        padding: 16px;
        display: flex;
        flex-wrap: wrap;
        margin-top: 15px;
        border: 1px solid rgba(163, 224, 255, 1);
        border-radius: 12px;
        background-color: rgba(250, 250, 250, 1);
    }

        .popup-overlay-page .popup-content .popup-change-phone .box-support .box-lf {
            width: 114px;
        }

            .popup-overlay-page .popup-content .popup-change-phone .box-support .box-lf .step {
                width: 100%;
                display: block;
                padding: 4px 16px;
                border-radius: 24px 0 0 24px;
                background: linear-gradient(to right, rgba(26, 188, 254, 1), rgba(26, 188, 254, 0));
                font-size: 20px;
                color: rgba(13, 107, 153, 1);
                font-weight: 700;
            }

        .popup-overlay-page .popup-content .popup-change-phone .box-support .box-rg {
            width: calc(100% - 114px);
            padding-left: 15px;
        }

            .popup-overlay-page .popup-content .popup-change-phone .box-support .box-rg .title {
                width: 100%;
                text-align: left;
                font-size: 14px;
                color: rgba(37, 37, 37, 1);
                font-family: "Be Vietnam Pro Medium";
            }

    .popup-overlay-page .popup-content .popup-change-phone .box-syntax {
        width: 100%;
        border-radius: 12px;
        border: 1px dashed rgba(34, 154, 214, 1);
        padding: 12px 16px;
        gap: 10px;
        margin-top: 10px;
    }

    .popup-overlay-page .popup-content .popup-change-phone .syntax-sms {
        width: 100%;
        display: inline-block;
        font-size: 18px;
        font-weight: 600;
        color: rgba(26, 29, 31, 1);
        text-align: left;
        font-family: "Be Vietnam Pro Medium";
    }

        .popup-overlay-page .popup-content .popup-change-phone .syntax-sms strong {
            font-size: 18px;
            color: rgba(34, 154, 214, 1);
            font-weight: 600;
        }

        .popup-overlay-page .popup-content .popup-change-phone .syntax-sms small {
            font-size: 14px;
            font-weight: 400;
        }

    .popup-overlay-page .popup-content .popup-change-phone .login-option {
        width: 380px;
        border: 1px solid #e5e7ea;
        border-radius: 12px;
        padding: 16px 24px;
        background-color: #fafafa;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 10px;
    }

        .popup-overlay-page .popup-content .popup-change-phone .login-option label {
            width: 100%;
            color: rgba(26, 29, 31, 1);
            text-align: left;
            font-weight: 600;
        }

    .popup-overlay-page .popup-content .popup-change-phone .note-otp {
        width: 100%;
    }

    .popup-overlay-page .popup-content .popup-change-phone .wrap-content {
        width: 70%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 15%;
    }

    .popup-overlay-page .popup-content .popup-change-phone .box-support .box-rg .note-sms {
        width: 100%;
        display: inline-block;
        margin-top: 10px;
        text-align: center;
        font-size: 14px;
        color: rgba(100, 116, 139, 1);
        font-family: "Be Vietnam Pro Medium";
    }

        .popup-overlay-page .popup-content .popup-change-phone .box-support .box-rg .note-sms strong {
            color: rgba(89, 96, 102, 1) !important;
        }

    .popup-overlay-page .popup-content .popup-change-phone .note-otp {
        width: 100%;
        display: inline-block;
        color: rgba(26, 29, 31, 1);
        font-size: 16px;
        margin-top: 10px;
    }

    .popup-overlay-page .popup-content .popup-change-phone .support-text {
        width: 100%;
        display: inline-block;
        font-size: 16px;
        margin-top: 20px;
        color: rgba(37, 37, 37, 1);
        font-family: "Inter", sans-serif;
    }

    .popup-overlay-page .popup-content .popup-change-phone .popup-footer {
        width: 100%;
        margin-top: 20px;
        border-top: 1px solid rgba(217, 221, 234, 1);
        padding-top: 10px;
    }

        .popup-overlay-page .popup-content .popup-change-phone .popup-footer p {
            width: 100%;
            font-size: 14px;
            color: rgba(100, 116, 139, 1);
            font-family: "Inter", sans-serif;
            text-align: left;
        }

            .popup-overlay-page .popup-content .popup-change-phone .popup-footer p a {
                color: rgba(26, 188, 254, 1);
                font-weight: 600;
            }

@media (max-width:1900px) {
    .new-pass-container .box-pass-otp .otp-code-container .otp-wrapper input {
        max-width: 48px;
    }
}

@media (max-width:1700px) {
    .new-pass-container {
        width: 74%;
        margin-left: 13%;
    }

        .new-pass-container .box-pass-otp .otp-code-container .otp-wrapper {
            width: 100%;
            padding: 0 15px;
        }


            .new-pass-container .box-pass-otp .otp-code-container .otp-wrapper input {
                max-width: 48px;
            }
}

@media (max-width:1400px) {
    .new-pass-container {
        width: 90%;
        margin-left: 5%;
    }

        .new-pass-container .wrap-content {
            width: 100%;
            margin-left: 0%;
        }
}

@media (max-width:1024px) {
    [iostem-container] [iostem-form-wrap] {
        width: 80%;
        padding: 30px 40px;
    }

    [input-otp] [otp-group] input {
        width: 36px;
        font-size: 28px;
    }

    .new-pass-container .wrap-content {
        width: 100%;
        margin-left: 0;
    }

        .new-pass-container .wrap-content .box-syntax .syntax-sms {
            font-size: 16px;
        }

    .new-pass-container .box-pass-otp {
        width: 74%;
    }

    .new-pass-container .box-btn button {
        padding: 0.8rem 2rem;
    }

    .new-pass-container .popup-footer .note-otp-email {
        font-size: 15px;
        margin-top: 20px;
    }

    .new-pass-container .popup-footer .otp-footer-note {
        margin-top: 16px;
    }
}

@media (max-width:768px) {
    [iostem-container] [iostem-form-wrap] {
        width: 90%;
        padding: 30px 40px;
    }

    [iostem-container] [iostem-account] [iostem-line-input] [iostem-wrap-label] {
        max-width: 50%;
    }

    [iostem-container] [iostem-account] [iostem-line-input] [iostem-button] {
        max-width: 50%;
        font-size: 13px;
        padding: 8px 20px;
        min-width: auto;
        height: auto;
    }

    .new-pass-container {
        width: 90%;
        margin-left: 5%;
        padding: 40px;
    }

        .new-pass-container .wrap-content {
            width: 90%;
            margin-left: 5%;
        }

        .new-pass-container .box-pass-otp {
            width: 85%;
        }

        .new-pass-container .popup-footer {
            width: 90%;
            margin-left: 5%;
        }

    .popup-overlay-page .popup-content {
        width: 90%;
        min-width: 450px;
    }

    [iostem-popup-change-phone] {
        max-width: 100%;
    }

    .popup-overlay-page .popup-content .popup-change-phone .syntax-sms {
        font-size: 15px;
    }

    .popup-overlay-page .popup-content .popup-change-phone .support-text {
        font-size: 14px;
    }
}

@media (max-width:650px) {
    .new-pass-container .box-pass-otp {
        width: 100%;
    }

        .new-pass-container .box-pass-otp .otp-code-container .otp-wrapper input {
            max-width: 40px
        }

        .new-pass-container .box-pass-otp .otp-code-container {
            margin-top: 10px;
        }
}

@media (max-width:450px) {
    [iostem-container] [iostem-form-wrap] {
        width: 96%;
        padding: 30px 40px;
        max-height: 100vh;
        overflow-y: scroll;
    }

        [iostem-container] [iostem-form-wrap]::-webkit-scrollbar {
            display: none;
        }

    [iostem-container] [iostem-header] h2 {
        font-size: 30px;
    }

    [iostem-container] [iostem-header] p {
        font-size: 13px;
    }

    [iostem-container] [iostem-account] [iostem-line-input] [iostem-value] {
        max-width: 50%;
        font-size: 15px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: break-spaces;
    }

    [iostem-container] [iostem-account] [iostem-line-input] [iostem-button] {
        font-size: 13px;
        padding: 8px 10px;
        min-width: auto;
        height: auto;
    }

    .new-pass-container {
        width: 96%;
        margin-left: 2%;
        padding: 30px;
    }

        .new-pass-container h2 {
            font-size: 32px;
        }

        .new-pass-container .wrap-content {
            width: 100%;
            margin-left: 0;
        }

            .new-pass-container .wrap-content .box-syntax {
                padding: 12px 6px;
            }

                .new-pass-container .wrap-content .box-syntax .syntax-sms {
                    font-size: 15px;
                }

        .new-pass-container .box-pass-otp {
            width: 100%;
        }

        .new-pass-container .popup-footer {
            width: 100%;
            margin-left: 0;
        }

        .new-pass-container .box-pass-otp .otp-code-container {
            margin-top: 10px;
        }

            .new-pass-container .box-pass-otp .otp-code-container .otp-wrapper input {
                max-width: 40px;
            }

    .popup-overlay-page .popup-content {
        min-width: auto;
        width: 96%;
        padding-bottom: 10px;
    }

    [iostem-popup-change-phone] {
        padding: 20px 0;
    }

        [iostem-popup-change-phone] h2 {
            font-size: 26px;
        }

        [iostem-popup-change-phone] .box-btn .btn-submit {
            padding: 0.6rem;
            min-height: 54px;
        }

        [iostem-popup-change-phone] .popup-footer .note-otp {
            padding: 0;
            font-size: 13px;
        }

    .popup-overlay-page .popup-content .icon-close {
        width: 18px;
    }

    .popup-overlay-page .popup-content .popup-change-phone h2 {
        font-size: 22px;
        margin-top: 20px;
    }

    .popup-overlay-page .popup-content .popup-change-phone .note {
        margin-top: 10px;
        font-size: 14px;
    }

    .popup-overlay-page .popup-content .popup-change-phone .box-support .box-rg {
        width: 100%;
        margin-top: 15px;
        padding-left: 0;
    }
}

@media (max-width:385px) {
    [iostem-container] [iostem-account] [iostem-line-input] [iostem-wrap-label] {
        max-width: 100%;
        width: 100%;
    }

    [iostem-container] [iostem-account] [iostem-line-input] [iostem-button] {
        max-width: none;
        padding: 8px 20px;
        margin-top: 10px;
    }

    .new-pass-container {
        width: 100%;
        max-height: 100vh;
        overflow-y: scroll;
        margin-left: 0;
        padding: 20px;
    }

        .new-pass-container::-webkit-scrollbar {
            display: none;
        }

        .new-pass-container .note {
            font-size: 15px;
        }

        .new-pass-container .box-pass-otp .login-option {
            padding: 10px;
        }

        .new-pass-container .box-pass-otp .otp-code-container {
            margin-top: 5px;
        }

            .new-pass-container .box-pass-otp .otp-code-container .otp-wrapper input {
                width: 40px;
            }

        .new-pass-container .box-btn button {
            padding: 0.6rem 1.5rem;
        }

    [iostem-popup-change-phone] .popup-footer .note-otp {
        font-size: 14px;
    }

    .popup-overlay-page .popup-content {
        max-height: 100%;
        overflow-y: scroll;
        padding: 30px 10px 10px 10px;
    }

        .popup-overlay-page .popup-content::-webkit-scrollbar {
            display: none;
        }

        .popup-overlay-page .popup-content .popup-change-phone h2 {
            font-size: 20px;
        }

        .popup-overlay-page .popup-content .popup-change-phone .note {
            font-size: 13px;
        }

        .popup-overlay-page .popup-content .popup-change-phone .syntax-sms {
            font-size: 13px;
        }

        .popup-overlay-page .popup-content .popup-change-phone .box-support .box-rg .title {
            font-size: 13px;
        }

        .popup-overlay-page .popup-content .popup-change-phone .syntax-sms strong {
            font-size: 15px;
        }

        .popup-overlay-page .popup-content .popup-change-phone .popup-footer p {
            font-size: 13px;
        }
}
