.panel {
    display: flex;
    justify-content: center;
    height: 100vh;
    background: #fff;
    width: 100%;
    align-content: center;
}

.panel-content-signin {
    display: flex;
    height: 100%;
    width: 100%;
}

.panel-form {
    width: 100%;
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.panel-form .hidden-for-center-card {
    width: 100%;
    height: 40px;
}

.panel-form-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
    border-radius: 16px;
    background: #FFF;
    text-align: center;
}

.panel-form-banner {
    width: auto;
    height: 50px;
}

.panel-form-card > .welcome-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 44px;
    margin-bottom: 24px;
    margin-top: 44px;
    font-family: 'Kanit';
    font-weight: 600;
    font-style: normal;
}

.panel-form-card > .welcome-subtitle {
    font-size: 28px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    
    .description-h2 {
        flex-shrink: 0;
        font-weight: 600;
    }

    .txt-yellow {
        color: #facc15; 
        font-weight: 600;
        font-size: inherit;
    }

    .txt-green {
        color: #1ab26c;
        font-weight: 600;
        font-size: inherit;
    }
}

.panel-form-card > .login-using-title {
    margin-top: 35px;
    font-size: 14px;
}

.panel-login-option {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    gap:8px;
    margin-top: 14px;
}

.panel-image {
    width: 60%;
    height: 100%
}

.image-container {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0 10px 0 72px;
}

.image-container > img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}

.panel-login-option button {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    max-width: 100%;
    width: 400px;
    height: 44px;
    justify-content: center;
    padding: 10px;
    gap: 4px;
    color: #344054 !important;
    span {
        color: #344054 !important;
    }
}

.panel-login-option button:hover {
    background-color: #F2F4F7 !important;
}

.panel-login-option button img {
    height: 24px;
    width: auto;
}

.contactus {
    display: flex;
    gap: 8px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
    margin-top: 8px;

    > a {
        pointer-events: fill; 
        color: #1570EF;
        font-size: 14px;
    }
}

.footer-one {
    text-align: center;
    margin-top: 35px;
}

footer.footer-login {
    color: var#70798C;
    text-align: center;
    opacity: 1;
    /* Text 6xl Regular */
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 150% */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-login .copyright {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #0e0e0e;
    
    > span {
        color: #0e0e0e;
        font-weight: 500;
        font-size: inherit;
    }
}

.footer-login .terms-policy {
    font-size: 14px;
    line-height: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    margin-bottom: 8px;
}

.render-version {
    color: #616161;
    margin-top: 9px;
}

#lblTermsOfService, #lblPrivacyPolicy {
    color: #1570EF;
    cursor: pointer;
    text-decoration: underline;
}

#btnConnectWithGoogle, #btnConnectWithFacebook, #btnConnectWithMicrosoft, #btnConnectWithEmail {
    display: none;
}

#btnConnectWithGoogle *, #btnConnectWithFacebook *, #btnConnectWithMicrosoft *, #btnConnectWithEmail * {
    pointer-events: none;
}

#btnConnectWithGoogle {
    border-radius: 4px;
    border: 1px solid #D0D5DD;
    background: #fff;
}

#btnConnectWithEmail {
    border-radius: 4px;
    border: 1px solid #D0D5DD;
    background: #FFF;
}

#btnConnectWithFacebook {
    border-radius: 4px;
    border: 1px solid #D0D5DD;
    background: #2570D0;
}

#btnConnectWithMicrosoft {
    border-radius: 4px;
    border: 1px solid #D0D5DD;
    background: #000;
}

/* MEDIA QUERY */
@media only screen and (max-width: 768px) {
    .panel-form {
        width: 100%;
        justify-content: start;
        padding: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .panel-image {
        display: none;
    }

    .panel-form img {
        height: auto;
        width: calc(100px + 1.5vw);
    }

    .panel-login-option {
        display: flex;
        flex-direction: column;
        width: 250px;
        gap:8px;
        margin-top: 20px;
    }
    
    .panel-form-card {
        padding: 10px;
    }
    
    .panel-form-card > .welcome-title {
        font-size: calc(24px + 1.5vw);
    }

    .panel-form-card > .welcome-subtitle  {
        font-size: calc(14px + 1.25vw);
    }

    .contactus, .contactus > a, .footer-login .terms-policy, .footer-login .copyright {
        font-size: calc(10px + 1vw);
    }

    .render-version {
        font-size: calc(8px + 1vw);
    }
}

@media only screen and (max-width: 600px) {
    .contactus {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
}

@media only screen and (max-width: 425px) {  
    .panel-form {
        height: 100%;
    }

    .panel-login-option button img {
        height: 14px;
        width: auto;
    }
}

@media only screen and (max-width: 325px) {
    .panel-login-option button img {
        height: 14px;
        width: auto;
    }

    .panel-login-option {
        display: flex;
        flex-direction: column;
        width: 200px;
        gap:8px;
        margin-top: 20px;
    }

    button span {
        font-size: 11px;
    }

    .footer-one {
        font-size: 11px;
    }

    footer {
        font-size: 11px;
    }

}