﻿.container {
    height: 100%;
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.header-source {
    display: none;
}

@media only screen and (max-width:1200px) and (max-height: 1100px) {
    .k-footer {
        bottom: unset !important;
    }
}

@media only screen and (max-width:600px) {
    .lang-flag {
        margin-top: 10px;
    }

    .hcm-phone {
        padding-left: 22px;
    }
}

@media only screen and (min-width:600px) {
    .header-newline {
        display: none;
    }

    .header-source {
        display: inline;
    }
}

.hdsd_ezgsm {
    text-decoration: none !important;
    color: #000 !important;
}

.input-captcha {
    height: 36px;
    border-left: none;
    border-radius: 0;
    width: 170px;
    border-radius: 0px 3px 3px 0px;
}

.captcha {
    width: 270px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/*   body {
        height: 100vh;
        
    }
*/
:root {
    --neutral-black-13: #000;
    --neutral-black-7: #8c8c8c;
    --input-field-color: #8c8c8c;
    --input-field-bgcolor: #f0f0f0;
    --color-primary: #1aaf74;
    --color-primary-hover: #148a5c;
    --color-text-support: #1990ff;
    --color-text-support-hover: #006bb3;
}

html {
    overflow-y: auto;
}

/* LOGIN */
.login-wrapper {
    gap: 120px;
    padding: 0 15px;
    width: 100%;
}

.login-form-container {
    flex-direction: column;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 24px;
}

.login-form-column {
    width: 100%;
    max-width: 501px;
    box-shadow: 0px 0px 65.4px 0px #00000030;
    border-radius: 32px;
}

.logo {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 140px;
}

.welcome-text {
    margin-top: 5px;
    font-size: 18px;
    font-weight: 600;
    text-align: justify;
    text-justify: inter-word;
}

.form-section {
    display: flex;
    margin-top: 32px;
    width: 100%;
    flex-direction: column;
}

.input-group {
    width: 100%;
    margin-bottom: 24px;
}

    .input-group label {
        color: #000;
        font-weight: 400;
        line-height: 1.4;
        margin-bottom: 8px;
    }

.input-field {
    border-radius: 100px !important;
    background-color: var(--input-field-bgcolor);
    height: 48px;
    width: 100%;
    color: var(--input-field-color);
    font-weight: 600;
    line-height: 1.2;
    padding: 15px 16px;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

    .input-field:focus {
        outline: none;
        border-color: #1aaf74;
    }

.form-options {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    font-weight: 400;
    line-height: 1.4;
}

.remember-login {
    gap: 12px;
    color: #8c8c8c;
}

.checkbox-wrapper {
    background-color: #fff;
    border-radius: 50%;
    min-width: 15px;
    height: 15px;
    border: 1px solid #7b7b7b;
    cursor: pointer;
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: center;
}

input[type="checkbox"]:checked + .checkbox-wrapper::after {
    content: "";
    width: 9px;
    height: 9px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.forgot-password {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

    .forgot-password:hover,
    .forgot-password:focus {
        color: var(--color-primary-hover);
        text-decoration: underline;
    }

.submit-button {
    width: 100%;
    border-radius: 32px;
    background-color: var(--color-primary);
    color: #fff;
    line-height: 1.4;
    padding: 12px 16px;
    border: none;
    transition: background-color 0.2s ease;
}

    .submit-button:hover,
    .submit-button:active {
        background-color: var(--color-primary-hover);
    }

.image-column {
    width: 45%;
}

.image-wrapper {
    border-radius: 32px;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    overflow: hidden;
}

.hero-image {
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* END :: LOGIN */

@media (max-width: 991px) {

    .login-form-column {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .welcome-text {
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .input-field,
    .submit-button,
    .forgot-password {
        transition: none;
    }
}

.login-container .support_btn_container a {
    font-weight: 400;
    font-size: 16px;
    line-height: 22.4px;
    transition: color 0.2s ease;
    color: var(--color-text-support);
}

.support_btn_container a:hover,
.support_btn_container a:focus {
    color: var(--color-text-support-hover);
    text-decoration: underline;
}

#supportModal .modal-content {
    min-height: 233px;
    max-height: fit-content;
    width: 500px;
    padding: 16px;
}

.hotline {
    font-size: 16px;
    text-align: center;
}

.hotline-number {
    color: #1A9034;
    font-weight: bold;
}

.login-container .support_btn_container {
    gap: 10px;
}

@media (min-width: 576px) {
    .login-container .support_btn_container {
        gap: 35px;
    }
}

@media (min-width: 768px) {
    .hotline {
        text-align: left;
    }
}

:root {
    --neutral-black-13: #000;
    --neutral-black-7: #8c8c8c;
}

.success-icon {
    aspect-ratio: 1;
    width: 48px;
    border-radius: 32px;
    object-fit: contain;
}

.success-heading {
    color: var(--neutral-black-13);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin: 10px 0 8px 0;
}

.instruction-text {
    color: var(--neutral-black-7);
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    margin: 0;
}

#resetPasswordSuccessModal .modal-content {
    min-height: 248px;
    max-height: fit-content;
    width: 348px;
    padding: 10px 16px 16px 16px;
}

@media screen and (max-width: 480px) {
    #resetPasswordSuccessModal .modal-content {
        height: fit-content;
    }
}

.modal-dialog-centered {
    box-shadow: none !important;
}

.login-container .modal-content {
    border-radius: 32px;
    width: 501px;
    min-height: 360px;
    max-height: fit-content;
}

.login-container .modal-body {
    padding: 20px 20px;
}

.login-container .btn-container {
    gap: 30px;
}

.btn-cancel {
    border-radius: 32px;
    border: 1px solid #8c8c8c;
    color: #000;
    background-color: #fff;
    max-width: 75px;
    min-height: 46px;
    width: 100%;
}

.btn-submit {
    min-height: 46px;
    height: 46px;
}

#forgotPasswordTitle {
    font-weight: 600;
}

#passwordRecoveryForm .btn-submit {
    border-radius: 32px;
    padding: 12px 24px;
    background-color: #1aaf74;
    color: #fff;
    border: none;
    min-width: 120px;
}

.form-label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-ezgsm {
    font-size: 14px;
}

@media (max-width: 991px) {
    .login-container .modal-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-login {
        /*margin-top: 6px !important;*/
    }

    .login-form-column {
        box-shadow: none;
    }

    .style-dhcdtt {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .modal {
        transition: none;
    }
}

#instructionVideoModal .modal-content {
    max-width: 889px;
    width: 100%;
    min-height: 0;
    max-height: 657px;
}

#instructionVideoModal .video-wrapper {
    border: 4px solid transparent;
    border-radius: 30px;
    background: linear-gradient(48deg, #40A2FF, #F8C419, #1AAF74) border-box;
}

.footer-login.mobile {
    display: none;
}

@media (max-width: 767px) {
    body {
        height: min-content;
        max-height: unset;
        min-height: unset;
    }

    .footer-login.desktop {
        display: none !important;
    }

    .footer-login.mobile {
        display: flex;
    }
}

.footer-login {
    margin-top: 64px;
}

.footer-ezgsm {
    opacity: .25;
}

.footer-login > img {
    width: 120px !important;
    height: 32px !important;
}

@media screen and (max-width: 480px) {

    .dropdown_lang_login {
        display: none;
    }

    .lang_mobile {
        display: block !important;
    }
}
/*#img_lang_login {
    float: left;

}
    */
#img_lang_login img {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50%;
}

/*#selectLanguage {
    left:20px!important;
    top:10px!important;
}*/

.style-ezgsm {
    font-family: 'Helvetica';
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 51px;
    /* identical to box height */
    color: black;
    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}
/*CSS login**/

.style-dhcdtt {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 29px;
    /* identical to box height */
    text-transform: uppercase;
    color: #464646;
    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
    margin-top: 0px;
    /*text-align: justify;
    text-align-last: justify;*/
}

@media screen and (max-width:480px) {
    .header-section {
        width: 100%;
    }

        .header-section > div {
            padding: 0px !important;
        }

    .style-dhcdtt {
        text-align: center !important;
    }
}
