*, ::after, ::before {
    box-sizing: revert;
}

body {
    min-width: 1440px;
    opacity: 1;
    background: url("../public/images/login-background.png") no-repeat center center;
    background-size: cover;
}

.body-content {
    font-family: 'Roboto-Medium';
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

header {
    display: flex;
    justify-content: center;
}

.logo {
    background-image: url("../public/images/logo.png");
    left: 152px;
    width: 154px;
    height: 40px;
    margin: 24px 1090px 0 0;
    opacity: 1;
    align-items: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.content {
    display: flex;
    /* Use Flexbox to arrange left and right */
    align-items: center;
    /* Vertical center alignment */
    justify-content: space-around;
    /* Evenly distributed in the horizontal direction */
    position: relative;
    top: 85px;
}

.left {
    /* background-color: #ccc; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-direction: column;
    margin-right: 80px;
}

.left-top {
    display: none;
    width: 588px;
}

.left-top2 {
    width: 588px;
    display: flex;
    margin-top: 20px;
    flex-direction: column;
}

.left-bottom {
    display: none;
    align-items: center;
    /* Vertical center alignment */
    justify-content: center;
    /* Horizontal center alignment */
}

.left-top span {
    /** Text 1 */
    font-size: 46px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 57.62px;
    color: rgba(184, 77, 0, 1);
    font-family: 'AlibabaPuHuiTi-Medium';
}

.left-top span:last-child {
    /** Text 1 */
    font-family: 'Roboto-Medium';
    display: block;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 18.75px;
    color: rgba(0, 0, 0, 0.45);
    margin-top: 16px;
}

.left-top2 span {
    /** Text 1 */
    font-size: 46px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 60px;
    color: rgba(255, 255, 255, 1);
    font-family: 'AlibabaPuHuiTi-Medium';
}

.left-top2 span:last-child {
    /** Text 1 */
    font-family: 'Roboto-Medium';
    display: block;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 18.75px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 16px;
}

.right {
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* Horizontal center alignment */
    width: 480px;
    height: 600px;
    opacity: 1;
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0px 3px 20px 2px rgba(211, 229, 255, 1);
}

.right .right-content {
    position: relative;
    margin-top: 65px;
    width: 351px;
}

.right .right-content .title {
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 28.13px;
    color: rgba(0, 0, 0, 1);
}

.right .title span {
    position: relative;
    display: block;
    top: 65px;
    width: 179px;
    height: 65px;
    font-family: 'Roboto-Medium';
    white-space: nowrap;
    opacity: 1;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 28.13px;
    color: rgba(0, 0, 0, 1);
    text-align: left;
}

footer {
    display: flex;
    align-items: center;
    /* Vertical center alignment */
    justify-content: center;
    /* Horizontal center alignment */
    margin-top: 150px;
}

footer p {
    /** Text 1 */
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 16.41px;
    color: rgba(153, 153, 153, 1);
    text-align: center;
    vertical-align: top;
}

.icon-left-bottom img {
    width: 571px;
    height: 470px;
    margin-bottom: -120px;
}

.tab-container {
    display: flex;
    /* Use flexbox layout */
    margin-bottom: 20px;
    /* Bottom Spacing */
}

.tab {
    /*Padding of tabs */
    cursor: pointer;
    /* Pointer when mouse is over */
    color: #555;
    /* Default text color */
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-right: 16px;
}

.tab:hover {
    background-color: #e0e0e0;
    /* Background color when mouse is hovering */
    color: #333;
    /* Mouseover text color */
}

.tab.active {
    color: #e26f2d;
    /*The text color of the selected tab */
    border-bottom: 2px solid #e26f2d;
    /*Select the bottom border of the tab */
}

.tab-content {
    display: none;
    /* Hidden content by default */
}

.tab-content input {
    padding-left: 20px;
    width: 327px;
    height: 42px;
    opacity: 1;
    border-radius: 6px;
    background: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(0, 0, 0, 1);
    border: 1px solid #B0B0B0;
    outline: none;
    /* Remove default outline when focusing */
    transition: border-color 0.3s;
    /* Smooth transition effect */
    margin-bottom: 16px;
}

.tab-content input:focus {
    border-color: rgb(0, 85, 204);
    /* Blue border */
}

.tab-content input::placeholder {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.25);
}

.tab-content.active {
    display: block;
    /* Show event content */
}

.vcode {
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 5px;
    width: 339px;
    height: 34px;
    margin-bottom: 16px;
    color: rgba(0, 0, 0, 1);
    border: 1px solid #B0B0B0;
}

.vscode {
    flex: 1;
    border: none !important;
    outline: none;
    margin-left: -5px;
    margin-top: 16px;
}

.resend {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    color: rgba(226, 111, 45, 1);
    cursor: pointer;
}

.separator {
    margin-left: 10px;
    margin-right: 10px;
    width: 0;
    height: 22px;
    border-left: 2px solid #ccc;
}

.vcode-pic {
    width: 81px;
    height: 30px;
    border-radius: 5px;
}

#QRCode {
    width: 100%;
}

form {
    background-color: white;
    /* Form background color */
    border-radius: 8px;
    /* Shadow Effect */
    width: 300px;
    /* Form Width */
}

.scancodeContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 50px;
}

.scancode-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 240px;
    opacity: 1;
    border-radius: 6px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.sure-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sure-code img {
    width: 40px;
    height: auto;
}

.sure-txt1 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.85);
}

.sure-txt2 {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.45);
}

.scancode-img img {
    margin: 10px;
}

.scancode-text {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.85);
}

.scancode-text span {
    color: rgba(255, 146, 69, 1);
}

.login-button {
    width: 350px;
    height: 42px;
    opacity: 1;
    border-radius: 6px;
    background: rgb(226, 111, 45);
    box-shadow: 0px 8px 24px rgba(233, 239, 245, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    /** Text 1 */
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(255, 255, 255, 1);
    text-align: left;
    margin-bottom: 15px;
    border: 1px;
    cursor: pointer;
}

.remember-me {
    width: 90px;
    height: 22px;
    opacity: 1;
    display: block;
}

.remember-me label {
    float: left;
    width: 56px;
    height: 22px;
    opacity: 1;
    /** Text 1 */
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.45);
    text-align: left;
    vertical-align: top;
}

.remember-me input {
    margin-right: 5px;
    float: left;
    /* Right Margin */
}

.forgetpass a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.45);
    text-decoration: none;
}

.content-foot {
    width: 350px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.third-party-login {
    display: flex;
    align-items: center;
    border-radius: 8px;
    margin-top: 20px;
}

.third-party-login .text {
    /* Font size */
    margin-right: 20px;
    /* Right Margin */
    /** Text 1 */
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 14.06px;
    color: rgba(192, 199, 214, 1);
    text-align: left;
    vertical-align: top;
}

.third-party-login .social-icons {
    display: flex;
}

.third-party-login .social-icons .icons-img {
    margin-left: 40px;
    /* Icon Spacing */
    left: 90.5px;
    top: 0px;
    width: 42px;
    height: 42px;
    opacity: 1;
    border-radius: 100px;
    background: rgba(235, 238, 244, 1);
    cursor: pointer;
}

.third-party-login .social-icons .icons-img:first-child {
    margin-left: 0;
}
.disabled {
    pointer-events: none; /* Disable mouse events */
    cursor: not-allowed; /* Optional: Change mouse style to reflect disabled state */
}

#warm_reminder_list {
    list-style-type: none;
    padding-left: 0;
}

/* Challenge code pop-up start */
.challenge-title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 24px;
    color: rgba(0, 0, 0, 1);
}

.input-group label {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.85);
}

.challenge-txt {
    margin-top: 5px;
    padding: 0 20px !important;
}

.challenge-content {
    max-width: 348px;
    width: 348px;
    height: 386px;
    opacity: 1;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 1) !important;
}

.input-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
}

.input-group:last-child {
    margin-bottom: 0;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
}

.input-group input {
    width: 300px;
    height: 32px;
    opacity: 1;
    border-radius: 3px;
    padding-left: 20px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.input-group input::placeholder {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.25);
    text-align: left;
}

.error-message {
    color: red;
    font-size: 12px;
}

.btn-red {
    color: rgba(204, 51, 0, 1);
}
/* Challenge code pop-up end */

/* Select phone number pop-up box start */
.phonenumber-title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 24px;
    color: rgba(0, 0, 0, 1);
}

.phonenumber-txt {
    margin-top: 5px;
    padding: 0 20px !important;
    margin-bottom: 30px;
}

.phonenumber-content {
    max-width: 348px;
    opacity: 1;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 1) !important;
}

#phoneNumberSelect {
    width: 100%;
}
/* Select phone number pop-up box end */

.login-content-hide{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 123px;
}

.login-content-hide img {
    max-width: 200px;
    height: auto;
    margin-bottom: 10px;
    width: 200px;
    height: 125.57px;
}

.login-content-hide p {
    text-align: center;
    margin: 10px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.45);
}

/*Exit pop-up window--strat*/

.exit-content {
    width: 400px !important;
    min-height: 178px;
    opacity: 1;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 1) !important;
    border: 0.5px solid rgba(0, 0, 0, 0.15) !important;
}

.modal-footer div {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 22px;
    cursor: pointer;
}

.exit-info {
    margin-top: -10px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.45);
}

.exit-cancel {
    color: rgba(0, 0, 0, 0.85);
}

.btn-red {
    color: rgba(204, 51, 0, 1);
}

.exit-info-title {
    display: flex;
    height: 24px;
    align-items: center;
    flex-direction: row;
}

.exit-info-icon {
    margin-right: 10px;
    margin-top: -2px;
}

.exit-info-icon img {
    width: 20px;
    height: 20px;
}

.exit-info-title span {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.85);
}


/*Exit pop-up window--end*/

/*Compatible with different screens--start*/

@media (max-height:800px) and (min-height:700px) {
    body {
        min-width: 1335px;
    }

    .content {
        height: 358px;
    }

    .left {
        margin-right: 0;
    }

    .left-top span:last-child {
        margin-top: 10.5px;
        font-size: 13px;
    }

    .icon-left-bottom img {
        width: 456px;
        height: 376px;
    }

    .left-top span:first-child {
        font-size: 34px;
    }

    .right {
        width: 425px;
        height: 540px;
    }

    .right .right-content .title {
        margin-bottom: 30px;
        font-size: 20px;
        line-height: 21.13px;
    }

    .right .right-content {
        width: 300px;
    }

    .tab-container span {
        font-size: 13px;
    }

    .tab-content input {
        width: 277px;
    }

    .tab-content input::placeholder {
        font-size: 10px;
    }

    .login-button {
        width: 300px;
    }

    .scancodeContent {
        margin-left: 0;
    }

    .remember-me input {
        width: 11px;
        height: 11px;
    }

    .remember-me label {
        font-size: 10px;
    }

    .third-party-login {
        margin-top: 18px;
    }

    .third-party-login .social-icons .icons-img {
        margin-left: 35px;
    }

    .third-party-login .text {
        margin-right: 10px;
        font-size: 10px;
    }

    .third-party-login .social-icons .icons-img {
        width: 30px;
        height: 30px;
    }

    .vcode {
        width: 290px;
    }

    .vcode-pic {
        width: 76px;
        height: 26px;
        border-radius: 5px;
    }

    footer {
        margin-top: 200px;
    }

    .msg-info,
    .msg-warning,
    .msg-error,
    .msg-success {
        width: 1080px;
        height: 32px;
        margin-top: 90px;
        border-radius: 5px;
    }
}

@media (max-height:700px) and (min-height:0px) {
    body {
        min-width: 1335px;
    }

    .content {
        height: 288px;
    }

    .left {
        margin-right: 0;
    }

    .left-top span:last-child {
        margin-top: 10.5px;
        font-size: 13px;
    }

    .icon-left-bottom img {
        width: 456px;
        height: 376px;
    }

    .left-top span:first-child {
        font-size: 34px;
    }

    .right {
        width: 425px;
        height: 540px;
    }

    .right .right-content .title {
        margin-bottom: 30px;
        font-size: 20px;
        line-height: 21.13px;
    }

    .right .right-content {
        width: 300px;
    }

    .tab-container span {
        font-size: 13px;
    }

    .tab-content input {
        width: 277px;
    }

    .tab-content input::placeholder {
        font-size: 10px;
    }

    .login-button {
        width: 300px;
    }

    .scancodeContent {
        margin-left: 0;
    }

    .remember-me input {
        width: 11px;
        height: 11px;
    }

    .remember-me label {
        font-size: 10px;
    }

    .content-foot {
        width: 300px;
    }

    .forgetpass a {
        font-size: 10px;
    }

    .third-party-login {
        margin-top: 18px;
    }

    .third-party-login .social-icons .icons-img {
        margin-left: 30px;
    }

    .third-party-login .text {
        margin-right: 10px;
        font-size: 10px;
    }

    .third-party-login .social-icons .icons-img {
        width: 30px;
        height: 30px;
    }

    .vcode {
        width: 290px;
    }

    .vcode-pic {
        width: 76px;
        height: 26px;
        border-radius: 5px;
    }

    footer {
        margin-top: 200px;
    }

    .msg-info,
    .msg-warning,
    .msg-error,
    .msg-success {
        width: 1080px;
        height: 32px;
        margin-top: 90px;
        border-radius: 5px;
    }
}


/*Compatible with different screens--end*/