/*
 CSS code to remove social login buttons (google, facebook) from login form. See Login form gadget documentation for details
 */
.WaGadgetAuthorizationRequired .openAuthFormContainer {
display: none !important;
} 
/* 
 CSS code to remove "Recurring Payments" text in application gadget. See help article "How can I remove the recurring payments text from the membership application?"
 Added by J. Miros 3/3/2025
 */
.levelRecurring {
display:none;
}
/*
 * Similarly, remove "Bundle Unlimited" text in
 * application gadget.
 * Added by J. Miros 3/7/2025
 */
 .levelBundle { 
     display: none;
 }
 /*
 * Change color of descriptive text in menu items
 * of application gadget 
 */
.levelRenewal {
    color:rgb(53, 8, 105);
}
.levelDescription {
    color:rgb(53, 8, 105);
}
/*
 * change color of descriptive text on input forms
 */
div.typeInstruction {
    color:rgb(53, 8, 105) !important;
}