body.no-scroll {
    overflow: hidden;
}

#otpModal {
    inset: 0;
    background: #000;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;

}

#otpModal .modal-dialog {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding: 0;
}


#otpModal .otp-logo-header {
    background-color: #1a1a1a;
    padding: 25px 0 15px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

#otpModal .otp-logo {
    height: 30px;
    object-fit: contain;
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.8));
}

/* Close (X) button */
#otpModal .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
}

#otpModal .close-btn:hover {
    color: #000;
}

/* Title */
#otpModal .modal-header {
    padding: 25px 40px 10px;
    border: none;
}

#otpModal .modal-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0;
    color: #000;
}

/* Body content */
#otpModal .modal-body {
    padding: 0 40px 10px;
}

#otpModal .modal-body p {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
}

/* OTP Input */
#otpModal input[type="text"] {
    width: 100%;
    padding: 14px;
    font-size: 20px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Resend OTP link */
#otpModal .otp-resend-link {
    font-size: 16px;
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 15px;
}

#otpModal .otp-resend-link:hover {
    text-decoration: underline;
}

/* Footer and Verify button */
#otpModal .modal-footer {
    padding: 0 40px 30px;
    border-top: none;
}

#otpModal .btn-primary {
    background-color: #FFD700;
    color: #000;
    font-weight: bold;
    padding: 14px;
    width: 100%;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#otpModal .btn-primary:hover {
    background-color: #e6c200;
}