/* Custom overrides for the Brevo form
 *
 * IMPORTANT:
 * - The technical field BE_TAX_PROFILE_ is rendered by the Brevo snippet.
 * - To hide the entire block cleanly (without touching the EMAIL input),
 *   we manually add a CSS class on this block in the Brevo HTML:
 *     <div class="sib-input sib-form-block brevo-extra-field"> ... </div>
 * - If you replace the Brevo snippet later, remember to add this class again
 *   on the technical field block you want to hide, otherwise the rules below
 *   will no longer apply.
 */

/* Hide only the technical BE_TAX_PROFILE_ input (bottom field) */
.sib-form #BE_TAX_PROFILE_ {
  display: none !important;
}

/* Specifically hide the block that contains BE_TAX_PROFILE_ (without affecting the email field) */
.sib-form .brevo-extra-field {
  display: none !important;
}

/* Force white background for the Brevo form container */
.sib-form {
  background-color: #FFFFFF !important;
}

.sib-form .sib-container {
  background-color: #FFFFFF !important;
}

