/**
 * Payment CTA Button Styles
 *
 * This stylesheet defines the appearance of the AI Alpha Hub
 * registration call-to-action button used in pricing and
 * subscription contexts where no PayPal plan applies.
 *
 * Scope:
 * - Visual styling only
 * - No functional or interactive logic
 *
 * Notes:
 * - Designed to visually align with PayPal branding
 * - Safe to load conditionally alongside payment components
 */



.aihub-btn-register {
    display: inline-block;
    background: #0070ba; /* PayPal blue */
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease;
}
.aihub-btn-register:hover {
    background: #003087; /* darker blue */
}
