﻿/* ── PIMPS — WCFM Membership Plan Cards — Dark + Light Mode ── */

.wcfm-membership-wrapper {
  padding: 0 !important;
  max-width: 1280px;
  margin: 0 auto;
}

#wcfm-main-contentainer .wcfm_membership_boxes {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  margin-top: 0 !important;
  flex-wrap: unset !important;
  width: 100% !important;
}
@media (max-width: 1024px) {
  #wcfm-main-contentainer .wcfm_membership_boxes { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 600px) {
  #wcfm-main-contentainer .wcfm_membership_boxes { grid-template-columns: 1fr !important; }
}

#wcfm-main-contentainer .wcfm_membership_box_wrraper {
  width: 100% !important;
  float: none !important;
}

/* ── DARK MODE (default) ── */
#wcfm-main-contentainer .wcfm_membership_box {
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(201,151,26,.2) !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  margin-bottom: 0 !important;
  transition: all .25s !important;
}
#wcfm-main-contentainer .wcfm_membership_box:hover {
  border-color: rgba(201,151,26,.45) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.4) !important;
}
#wcfm-main-contentainer .wcfm_membership_box_head {
  background: linear-gradient(135deg, #3d1a6e, #2a0f52) !important;
  border: none !important;
  border-radius: 0 !important;
  height: auto !important;
  padding: 28px 20px 32px !important;
}
#wcfm-main-contentainer .wcfm_membership_box_head .wcfm_membership_title {
  background: rgba(0,0,0,.25) !important;
  font-family: 'Cinzel Decorative', serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #f0c040 !important;
  padding: 14px 16px !important;
  margin-bottom: 20px !important;
  border-radius: 4px !important;
}
#wcfm-main-contentainer .wcfm_membership_box_head .wcfm_membership_price .amount {
  font-family: 'Cinzel', serif !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #f0c040 !important;
  border: 2px solid rgba(201,151,26,.6) !important;
  border-radius: 50% !important;
  padding: 24px 8px !important;
  min-width: 110px !important;
  min-height: 110px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(0,0,0,.2) !important;
}
#wcfm-main-contentainer .wcfm_membership_box_head .wcfm_membership_price_note {
  color: rgba(255,255,255,.7) !important;
  font-size: 12px !important;
  margin-top: 10px !important;
}
#wcfm-main-contentainer .wcfm_membership_box_body {
  padding: 20px !important;
  background: rgba(255,255,255,.04) !important;
}
#wcfm-main-contentainer .wcfm_membership_box_body .wcfm_memberships_subscribe,
#wcfm-main-contentainer .wcfm_membership_box_body a.button,
#wcfm-main-contentainer .wcfm_membership_box_body input[type="submit"],
.wcfm_memberships_subscribe_btn {
  display: block !important;
  width: 100% !important;
  background: #f0c040 !important;
  color: #1a0835 !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 14px !important;
  font-family: 'Cinzel', serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  text-align: center !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all .2s !important;
}
#wcfm-main-contentainer .wcfm_membership_box_body .wcfm_memberships_subscribe:hover,
#wcfm-main-contentainer .wcfm_membership_box_body a.button:hover,
.wcfm_memberships_subscribe_btn:hover {
  background: #c9971a !important;
  color: #fff !important;
}

/* ── LIGHT MODE ── */
html[data-theme="light"] #wcfm-main-contentainer .wcfm_membership_box {
  background: #ffffff !important;
  border: 1px solid rgba(109,40,217,.15) !important;
  box-shadow: 0 2px 12px rgba(109,40,217,.07) !important;
}
html[data-theme="light"] #wcfm-main-contentainer .wcfm_membership_box:hover {
  border-color: #6d28d9 !important;
  box-shadow: 0 16px 40px rgba(109,40,217,.18) !important;
}
html[data-theme="light"] #wcfm-main-contentainer .wcfm_membership_box_head {
  background: linear-gradient(135deg, #6d28d9, #4c1d95) !important;
}
html[data-theme="light"] #wcfm-main-contentainer .wcfm_membership_box_head .wcfm_membership_title {
  background: rgba(255,255,255,.15) !important;
  color: #fde68a !important;
}
html[data-theme="light"] #wcfm-main-contentainer .wcfm_membership_box_head .wcfm_membership_price .amount {
  color: #fde68a !important;
  border-color: rgba(253,230,138,.6) !important;
}
html[data-theme="light"] #wcfm-main-contentainer .wcfm_membership_box_body {
  background: #ffffff !important;
}
html[data-theme="light"] #wcfm-main-contentainer .wcfm_membership_box_body .wcfm_memberships_subscribe,
html[data-theme="light"] #wcfm-main-contentainer .wcfm_membership_box_body a.button,
html[data-theme="light"] #wcfm-main-contentainer .wcfm_membership_box_body input[type="submit"],
html[data-theme="light"] .wcfm_memberships_subscribe_btn {
  background: #6d28d9 !important;
  color: #ffffff !important;
}
html[data-theme="light"] #wcfm-main-contentainer .wcfm_membership_box_body .wcfm_memberships_subscribe:hover,
html[data-theme="light"] #wcfm-main-contentainer .wcfm_membership_box_body a.button:hover,
html[data-theme="light"] .wcfm_memberships_subscribe_btn:hover {
  background: #7c3aed !important;
}

/* ── Vendor membership registration (storefront)
   Body can be dark (light text) while WCFM uses a white step panel — labels must
   not inherit body color. Broad selectors cover steps outside #wcfm_membership_container. */

.wcfm-membership-wrapper:has(#wcfm_membership_container),
.wcfm-membership-wrapper:has(.wc-progress-steps) {
  padding: 0 clamp(16px, 4vw, 48px) 56px !important;
  max-width: 1280px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  color: rgba(26, 8, 53, 0.92) !important;
  box-sizing: border-box !important;
}

/* body.pimps-membership-flow — same as :has() block for older mobile / webviews without :has() */
.pimps-membership-flow .wcfm-membership-wrapper {
  padding: 0 clamp(16px, 4vw, 48px) 56px !important;
  max-width: 1280px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  color: rgba(26, 8, 53, 0.92) !important;
  box-sizing: border-box !important;
}

.wcfm-membership-wrapper:has(#wcfm_membership_container) > h2,
.wcfm-membership-wrapper:has(.wc-progress-steps) > h2,
#wcfm_membership_container > h2,
#wcfm_membership_container h2.wcfm_membership_registration_form_heading {
  font-family: 'Cinzel Decorative', serif !important;
  font-size: clamp(20px, 3.2vw, 28px) !important;
  font-weight: 700 !important;
  color: #4c1d95 !important;
  text-align: center !important;
  margin: 0 0 6px !important;
  padding: 10px 8px 14px !important;
  line-height: 1.25 !important;
}

.pimps-membership-flow .wcfm-membership-wrapper > h2 {
  font-family: 'Cinzel Decorative', serif !important;
  font-size: clamp(20px, 3.2vw, 28px) !important;
  font-weight: 700 !important;
  color: #4c1d95 !important;
  text-align: center !important;
  margin: 0 0 6px !important;
  padding: 10px 8px 14px !important;
  line-height: 1.25 !important;
}

/* WooCommerce step indicator (Plans → Profile → …) */
.wcfm-membership-wrapper .wc-progress-steps {
  border: none !important;
  margin: 0 0 20px !important;
  padding: 0 !important;
}
.wcfm-membership-wrapper .wc-progress-steps li {
  color: rgba(26, 8, 53, 0.38) !important;
  border-color: rgba(26, 8, 53, 0.12) !important;
}
.wcfm-membership-wrapper .wc-progress-steps li.active,
.wcfm-membership-wrapper .wc-progress-steps li.done {
  color: rgba(26, 8, 53, 0.95) !important;
  border-color: rgba(26, 8, 53, 0.55) !important;
}

/* No extra “card” frame — avoids stacked borders with WooCommerce wrappers */
#wcfm_membership_container {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 8px 0 24px !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  box-sizing: border-box !important;
  color: rgba(26, 8, 53, 0.92) !important;
}

.wcfm-membership-wrapper .woocommerce form,
.wcfm-membership-wrapper .woocommerce form.checkout,
.wcfm-membership-wrapper .woocommerce form.register {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

.wcfm-membership-wrapper .woocommerce-input-wrapper,
.wcfm-membership-wrapper span.woocommerce-input-wrapper {
  display: block !important;
  width: 100% !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 !important;
  background: transparent !important;
}

.wcfm-membership-wrapper .woocommerce-billing-fields,
.wcfm-membership-wrapper .woocommerce-shipping-fields,
.wcfm-membership-wrapper .woocommerce-additional-fields,
.wcfm-membership-wrapper fieldset {
  border: none !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.wcfm-membership-wrapper .wcfm-container,
.wcfm-membership-wrapper .wcfm-collapse-content {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.wcfm-membership-wrapper .woocommerce-notices-wrapper:empty {
  display: none !important;
}

#wcfm_membership_container p.wcfm_title,
#wcfm_membership_container span.wcfm_title,
.wcfm-membership-wrapper p.wcfm_title,
.wcfm-membership-wrapper span.wcfm_title {
  display: block !important;
  margin: 22px 0 10px !important;
  padding: 0 !important;
}
#wcfm_membership_container p.wcfm_title:first-child,
#wcfm_membership_container span.wcfm_title:first-child {
  margin-top: 0 !important;
}
#wcfm_membership_container p.wcfm_title strong,
#wcfm_membership_container span.wcfm_title strong,
.wcfm-membership-wrapper p.wcfm_title strong,
.wcfm-membership-wrapper span.wcfm_title strong {
  font-style: normal !important;
  font-family: 'Cinzel', serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: rgba(26, 8, 53, 0.72) !important;
}

/* All registration labels (including steps outside #wcfm_membership_container) */
.wcfm-membership-wrapper label,
.wcfm-membership-wrapper .wcfm-label,
#wcfm_membership_container label,
#wcfm_membership_container .wcfm-label,
.wcfm-membership-wrapper .woocommerce form label {
  display: block !important;
  margin: 0 0 10px !important;
  font-family: 'Cinzel', serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(26, 8, 53, 0.78) !important;
}

.wcfm-membership-wrapper abbr.required,
#wcfm_membership_container abbr.required {
  color: #b91c1c !important;
  text-decoration: none !important;
  border: none !important;
}

/* One border per control only — strip row chrome that stacks with inputs */
#wcfm_membership_container .form-row,
#wcfm_membership_container .wcfm-container .wcfm_form_simple_wrapper,
.wcfm-membership-wrapper .woocommerce form .form-row {
  margin: 0 0 4px !important;
  padding: 0 0 18px !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
}

.wcfm-membership-wrapper input.input-text,
.wcfm-membership-wrapper input[type="text"],
.wcfm-membership-wrapper input[type="email"],
.wcfm-membership-wrapper input[type="password"],
.wcfm-membership-wrapper input[type="tel"],
.wcfm-membership-wrapper input[type="url"],
.wcfm-membership-wrapper input[type="number"],
.wcfm-membership-wrapper input[type="search"],
.wcfm-membership-wrapper input[type="date"],
.wcfm-membership-wrapper select,
.wcfm-membership-wrapper textarea,
#wcfm_membership_container input[type="text"],
#wcfm_membership_container input[type="email"],
#wcfm_membership_container input[type="password"],
#wcfm_membership_container input[type="tel"],
#wcfm_membership_container input[type="url"],
#wcfm_membership_container input[type="number"],
#wcfm_membership_container input[type="search"],
#wcfm_membership_container input[type="date"],
#wcfm_membership_container select,
#wcfm_membership_container textarea {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  background: #fff !important;
  border: 1px solid #c4c4cc !important;
  border-radius: 4px !important;
  padding: 14px 16px !important;
  min-height: 48px !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  font-family: 'Lato', sans-serif !important;
  color: #12071f !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color 0.15s ease, background 0.15s ease !important;
}
.wcfm-membership-wrapper textarea,
#wcfm_membership_container textarea {
  min-height: 120px !important;
}
.wcfm-membership-wrapper input:focus,
.wcfm-membership-wrapper select:focus,
.wcfm-membership-wrapper textarea:focus,
#wcfm_membership_container input:focus,
#wcfm_membership_container select:focus,
#wcfm_membership_container textarea:focus {
  border-color: #6d28d9 !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(109,40,217,.12) !important;
  outline: none !important;
}
.wcfm-membership-wrapper select option,
#wcfm_membership_container select option {
  background: #fff !important;
  color: #12071f !important;
}
.wcfm-membership-wrapper input[type="checkbox"],
.wcfm-membership-wrapper input[type="radio"],
#wcfm_membership_container input[type="checkbox"],
#wcfm_membership_container input[type="radio"] {
  width: auto !important;
  min-height: 0 !important;
  accent-color: #6d28d9;
}

.wcfm-membership-wrapper input:-webkit-autofill,
.wcfm-membership-wrapper input:-webkit-autofill:hover,
.wcfm-membership-wrapper input:-webkit-autofill:focus,
#wcfm_membership_container input:-webkit-autofill,
#wcfm_membership_container input:-webkit-autofill:hover,
#wcfm_membership_container input:-webkit-autofill:focus {
  -webkit-text-fill-color: #12071f !important;
  box-shadow: 0 0 0 1000px #fff inset !important;
  transition: background-color 99999s ease-out 0s;
}

/* ── DARK MODE — inputs must have light text on dark background ── */
html[data-theme="dark"] .wcfm-membership-wrapper input.input-text,
html[data-theme="dark"] .wcfm-membership-wrapper input[type="text"],
html[data-theme="dark"] .wcfm-membership-wrapper input[type="email"],
html[data-theme="dark"] .wcfm-membership-wrapper input[type="password"],
html[data-theme="dark"] .wcfm-membership-wrapper input[type="tel"],
html[data-theme="dark"] .wcfm-membership-wrapper input[type="url"],
html[data-theme="dark"] .wcfm-membership-wrapper input[type="number"],
html[data-theme="dark"] .wcfm-membership-wrapper input[type="search"],
html[data-theme="dark"] .wcfm-membership-wrapper input[type="date"],
html[data-theme="dark"] .wcfm-membership-wrapper select,
html[data-theme="dark"] .wcfm-membership-wrapper textarea,
html[data-theme="dark"] #wcfm_membership_container input[type="text"],
html[data-theme="dark"] #wcfm_membership_container input[type="email"],
html[data-theme="dark"] #wcfm_membership_container input[type="password"],
html[data-theme="dark"] #wcfm_membership_container input[type="tel"],
html[data-theme="dark"] #wcfm_membership_container input[type="url"],
html[data-theme="dark"] #wcfm_membership_container input[type="number"],
html[data-theme="dark"] #wcfm_membership_container input[type="search"],
html[data-theme="dark"] #wcfm_membership_container input[type="date"],
html[data-theme="dark"] #wcfm_membership_container select,
html[data-theme="dark"] #wcfm_membership_container textarea {
  background: rgba(255,255,255,.07) !important;
  border-color: rgba(201,151,26,.3) !important;
  color: rgba(255,255,255,.92) !important;
}
html[data-theme="dark"] .wcfm-membership-wrapper input:focus,
html[data-theme="dark"] .wcfm-membership-wrapper select:focus,
html[data-theme="dark"] .wcfm-membership-wrapper textarea:focus,
html[data-theme="dark"] #wcfm_membership_container input:focus,
html[data-theme="dark"] #wcfm_membership_container select:focus,
html[data-theme="dark"] #wcfm_membership_container textarea:focus {
  border-color: #f0c040 !important;
  background: rgba(255,255,255,.1) !important;
}
html[data-theme="dark"] .wcfm-membership-wrapper select option,
html[data-theme="dark"] #wcfm_membership_container select option {
  background: #1a0835 !important;
  color: rgba(255,255,255,.92) !important;
}
html[data-theme="dark"] .wcfm-membership-wrapper input:-webkit-autofill,
html[data-theme="dark"] #wcfm_membership_container input:-webkit-autofill {
  -webkit-text-fill-color: rgba(255,255,255,.92) !important;
  box-shadow: 0 0 0 1000px #1a0835 inset !important;
}

.wcfm-membership-wrapper .select2-container--default .select2-selection--single,
#wcfm_membership_container .select2-container--default .select2-selection--single {
  background: #ffffff !important;
  border: 1px solid #c4c4cc !important;
  border-radius: 4px !important;
  min-height: 48px !important;
  padding: 6px 12px !important;
  box-shadow: none !important;
}
.wcfm-membership-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered,
#wcfm_membership_container .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: rgba(26, 8, 53, 0.95) !important;
  line-height: 34px !important;
}
.wcfm-membership-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow b,
#wcfm_membership_container .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: rgba(26, 8, 53, 0.45) transparent transparent transparent !important;
}

.wcfm-membership-wrapper .select2-container {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.wcfm-membership-wrapper input[type="submit"],
.wcfm-membership-wrapper button[type="submit"],
.wcfm-membership-wrapper .woocommerce button.button,
#wcfm_membership_container input[type="submit"],
#wcfm_membership_container button[type="submit"],
#wcfm_membership_container .button {
  margin-top: 10px !important;
  padding: 14px 24px !important;
  min-height: 0 !important;
  font-family: 'Cinzel', serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

/* Notices: subtle, not full-width yellow bars; hide empty wrappers */
.wcfm-membership-wrapper .woocommerce-message,
.wcfm-membership-wrapper .woocommerce-error,
.wcfm-membership-wrapper .woocommerce-info {
  color: rgba(26, 8, 53, 0.88) !important;
  border-radius: 4px !important;
  border: 1px solid rgba(109, 40, 217, 0.14) !important;
  background: rgba(109, 40, 217, 0.06) !important;
  padding: 10px 14px !important;
  margin: 0 0 16px !important;
  box-shadow: none !important;
}
.wcfm-membership-wrapper .woocommerce-error {
  border-color: rgba(185, 28, 28, 0.25) !important;
  background: rgba(185, 28, 28, 0.06) !important;
}

.wcfm-membership-wrapper .woocommerce,
.wcfm-membership-wrapper .woocommerce-notices-wrapper {
  color: rgba(26, 8, 53, 0.9) !important;
}

.wcfm-membership-wrapper .woocommerce form h3,
.wcfm-membership-wrapper .woocommerce-additional-fields h3 {
  color: rgba(26, 8, 53, 0.92) !important;
}

.wcfm-membership-wrapper ::placeholder,
#wcfm_membership_container ::placeholder {
  color: rgba(26, 8, 53, 0.42) !important;
  opacity: 1 !important;
}

/* Dashboard: strip card border on membership wrapper (overrides dashboard container rules) */
#wcfm-main-contentainer .wcfm-membership-wrapper .wcfm-collapse .wcfm-container,
#wcfm-main-contentainer .wcfm-membership-wrapper .wcfm-tabWrap,
#wcfm-main-contentainer .wcfm-membership-wrapper .wcfm-container {
  border: none !important;
}

@media (min-width: 641px) {
  #wcfm-main-contentainer input#terms {
    margin-left: 0 !important;
    vertical-align: middle;
  }

  #wcfm_membership_container p.terms_title.wcfm_title {
    display: inline !important;
  }
}

/* Classic editor — hide Add Media only on storefront membership registration (not product editor) */
#wcfm_membership_container button#insert-media-button,
form#wcfm_membership_registration_form button#insert-media-button {
  display: none !important;
}

@media (max-width: 640px) {
  .wcfm-membership-wrapper .wc-progress-steps {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 0 !important;
    padding-bottom: 6px !important;
    margin-bottom: 16px !important;
  }
  .wcfm-membership-wrapper .wc-progress-steps li {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    font-size: 10px !important;
    letter-spacing: 0.04em !important;
    white-space: nowrap !important;
  }
}

/* ── LIGHT MODE — restore white inputs ── */
html[data-theme="light"] .wcfm-membership-wrapper input.input-text,
html[data-theme="light"] .wcfm-membership-wrapper input[type="text"],
html[data-theme="light"] .wcfm-membership-wrapper input[type="email"],
html[data-theme="light"] .wcfm-membership-wrapper input[type="password"],
html[data-theme="light"] .wcfm-membership-wrapper input[type="tel"],
html[data-theme="light"] .wcfm-membership-wrapper input[type="url"],
html[data-theme="light"] .wcfm-membership-wrapper input[type="number"],
html[data-theme="light"] .wcfm-membership-wrapper select,
html[data-theme="light"] .wcfm-membership-wrapper textarea,
html[data-theme="light"] #wcfm_membership_container input[type="text"],
html[data-theme="light"] #wcfm_membership_container input[type="email"],
html[data-theme="light"] #wcfm_membership_container input[type="password"],
html[data-theme="light"] #wcfm_membership_container input[type="tel"],
html[data-theme="light"] #wcfm_membership_container input[type="url"],
html[data-theme="light"] #wcfm_membership_container input[type="number"],
html[data-theme="light"] #wcfm_membership_container select,
html[data-theme="light"] #wcfm_membership_container textarea {
  background: #ffffff !important;
  border-color: rgba(109,40,217,.2) !important;
  color: rgba(26,8,53,.95) !important;
}
html[data-theme="light"] .wcfm-membership-wrapper input:focus,
html[data-theme="light"] .wcfm-membership-wrapper select:focus,
html[data-theme="light"] .wcfm-membership-wrapper textarea:focus,
html[data-theme="light"] #wcfm_membership_container input:focus,
html[data-theme="light"] #wcfm_membership_container select:focus,
html[data-theme="light"] #wcfm_membership_container textarea:focus {
  border-color: #6d28d9 !important;
  background: #fafafe !important;
}
html[data-theme="light"] .wcfm-membership-wrapper select option,
html[data-theme="light"] #wcfm_membership_container select option {
  background: #fff !important;
  color: rgba(26,8,53,.95) !important;
}
html[data-theme="light"] .wcfm-membership-wrapper input:-webkit-autofill,
html[data-theme="light"] #wcfm_membership_container input:-webkit-autofill {
  -webkit-text-fill-color: rgba(26,8,53,.95) !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
}
