/* Partner form dark-mode fixes */

body.theme-dark .partner-email-form {
  background: #2b2b2b !important;
}

body.theme-dark .partner-email-form h3,
body.theme-dark .partner-email-form p,
body.theme-dark .partner-email-form label {
  color: #ffffff !important;
}

/* White background behind the red-field labels (the <span> inside the <p>) */
body.theme-dark .partner-email-form p[style*="color:red"] span {
  background: #ffffff !important;
  color: #000000 !important;
  padding: 0 6px;
  border-radius: 6px;
  display: inline-block;
}

/* Keep the green card height hugging its content */
body.theme-dark .partner-email-form > .partner-green-panel {
  height: auto !important;
}

body.theme-dark .partner-email-form input,
body.theme-dark .partner-email-form select,
body.theme-dark .partner-email-form textarea {
  background: #1f1f1f !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.25) !important;
}

body.theme-dark .partner-email-form input::placeholder,
body.theme-dark .partner-email-form textarea::placeholder {
  color: rgba(255,255,255,0.6) !important;
}

body.theme-dark .partner-email-form button[type="submit"],
body.theme-dark .partner-email-form button {
  color: #ffffff !important;
}

