.otp-message {
    font-size: 13px;
    margin-top: 5px;
    margin-bottom: 10px;
    display: block;
    font-weight: 500;
}

#send-otp, #verify-otp {
    margin-top: 10px;
    cursor: pointer;
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

#send-otp:disabled, #verify-otp:disabled {
    background-color: #a0a5aa;
    cursor: not-allowed;
}

#send-otp:hover:not(:disabled), #verify-otp:hover:not(:disabled) {
    background-color: #005177;
}

/* Base state for submit button when controlled by plugin */
#submit-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}