
/* LangDC UI input OTP */
.otp-container {
    text-align: center;
    max-width: 430px;
    min-width: 350px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}
.otp-container h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
}
.otp-container p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}
.otp-inputs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.otp-inputs input {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline-color: var(--bs_define-bg);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.otp-container .email-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}
.otp-container .email-text span {
    font-weight: bold;
    color: #333;
}
#btn_submit_otp {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #fff;
    background-color: var(--bs_define-bg);
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
#btn_submit_otp:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}
#resend-text-now {
    align-content: center;
    font-size:14px;
}
#email-text-resend-code {
    display: none;
}
.icon_help{
    cursor: pointer;
    font-weight: 900 !important;
    color: var(--bs_define-bg);
    font-size:25px
}
.icon_help:hover {
    color: #A0C07C;
    opacity:0.7;
}
@media (orientation: landscape) and (max-width: 850px){
    .otp-container {
        margin-top: 40px;
    }
}