/* WooCommerce OTP Registration Styles */

.otp-controls-wrapper {
    margin-top: 15px;
    padding: 15px;
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.otp-controls-wrapper .otp-actions {
    margin-bottom: 10px;
}

#send-otp-btn {
    width: 100%;
}

#send-otp-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.otp-message {
    padding: 10px;
    margin-top: 10px;
    border-radius: 3px;
    font-weight: bold;
    text-align: center;
    display: none; /* Hidden by default */
}

.otp-message.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.otp-message.error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}