/* OTP Login Styles */

.input-container {
    position: relative;
}

/* 6-Digit OTP Input Container */
.otp-input-container {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin: 10px 0 15px 0;
    padding: 0 26px;
}

.otp-input {
    width: 48px;
    height: 48px;
    text-align: center;
    font-size: 20px;
    font-family: Montserrat-Regular;
    color: #404b46;
    background: transparent;
    border: 1px solid #bababa;
    border-radius: 10px;
    transition: all 0.4s;
    outline: none;
}

.otp-input:focus {
    border-color: #6675df;
    box-shadow: 0 0 0 1px #6675df;
}

.otp-input:not(:placeholder-shown) {
    border-color: #6675df;
}

.otp-input::placeholder {
    color: #bababa;
}

/* Paste feedback animation */
.otp-input-filled {
    animation: otpPulseFill 0.4s ease;
}

@keyframes otpPulseFill {
    0% {
        transform: scale(1);
        border-color: #bababa;
    }
    50% {
        transform: scale(1.05);
        border-color: #6675df;
        box-shadow: 0 0 0 2px rgba(102, 117, 223, 0.3);
    }
    100% {
        transform: scale(1);
        border-color: #6675df;
    }
}

/* Responsive OTP Inputs */
@media (max-width: 576px) {
    .otp-input-container {
        gap: 6px;
        padding: 0 15px;
    }
    
    .otp-input {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 5px;
    padding: 20px;
    transform: translateY(-50%);
    cursor: pointer;
}

.btn_lg {
    display: flex;
    justify-content: space-between;
}

.btn-style-1 {
    background-color: #123673 !important;
}

/* OTP Section Styles */
#otp-login-section p {
    margin-bottom: 20px;
    font-size: 14px;
}

#otp-step-2 p {
    margin-bottom: 20px;
}

#otp-email-display {
    color: #fbbc04;
}

/* Checkbox Styles */
.checkbox label {
    font-size: 14px;
    font-weight: normal;
}

/* Login Divider */
.login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 10px 0 10px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.login-divider span {
    padding: 0 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
}

/* Password Toggle Link */
.password-toggle-link {
    text-align: center;
    margin-top: 15px;
}

.password-toggle-link a {
    color: #fbbc04;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.password-toggle-link a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.password-toggle-link svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

/* reCAPTCHA Error */
#otp-recaptcha-error {
    font-size: 14px;
    margin-top: 8px;
}

#otp-recaptcha-error:empty {
    display: none;
    margin: 0;
}

/* Theme Colors */
body {
    background-color: #1D5E9F !important;
    color: #ffffff !important;
}

p {
    color: #ffffff !important;
}

.label-input100 {
    color: #ffffff !important;
}

.text-success {
    color: #ffffff !important;
}

.text-danger {
    color: #fbbc04 !important;
}

.account-block {
    margin: 20px 0 !important;
}

#otp-register-section{
    padding-left: 15px;
    padding-right: 15px;
}
