
/* IPEA Email Marketing Form - scoped styles */
.ipea-emf-wrap { display:flex; justify-content:center; padding: 24px 12px; }
.ipea-emf-card{
  width: min(440px, 100%);
  border-radius: 18px;
  padding: 28px 26px 26px;
  background: linear-gradient(180deg, #1A2D8F 0%, #0B1555 55%, #050A2A 100%);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
  isolation: isolate;
}

/* Ultra-specific: force heading/subtitle to #FFFFFF even if theme tries to override */
.ipea-emf-wrap .ipea-emf-card h2.ipea-emf-title,
.ipea-emf-wrap .ipea-emf-card .ipea-emf-title{
  color: #FFFFFF !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  -webkit-text-fill-color: #FFFFFF !important;
  text-shadow: 0 2px 18px rgba(0,0,0,.25);
}
.ipea-emf-wrap .ipea-emf-card .ipea-emf-subtitle{
  color: #FFFFFF !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

/* Defensive: if theme sets opacity/filter on headings inside forms */
.ipea-emf-wrap .ipea-emf-card *{
  mix-blend-mode: normal;
}

.ipea-emf-title{ margin:0 0 6px; font-size: 30px; font-weight: 800; letter-spacing: -0.2px; }
.ipea-emf-subtitle{ margin:0 0 18px; font-size: 13.5px; line-height: 1.35; }

.ipea-emf-form{ display:flex; flex-direction:column; gap: 10px; }
.ipea-emf-label{ color:#fff; font-weight:700; font-size: 13px; margin-top: 6px; }
.ipea-emf-label .req{ opacity:.85; }

.ipea-emf-input{
  width:100%;
  height: 38px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,1);
  padding: 0 10px;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.02);
}
.ipea-emf-input:focus{
  border-color: rgba(141,173,255,.9);
  box-shadow: 0 0 0 3px rgba(141,173,255,.18);
}

.ipea-emf-button{
  margin-top: 14px;
  width: 160px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(63,109,255,.35) 0%, rgba(63,109,255,.18) 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: .4px;
  cursor: pointer;
  transition: transform .08s ease, filter .12s ease;
}
.ipea-emf-button:hover{ filter: brightness(1.08); }
.ipea-emf-button:active{ transform: translateY(1px); }

.ipea-emf-alert{
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  margin: 8px 0 6px;
}
.ipea-emf-alert--error{
  background: rgba(255, 93, 93, .12);
  border: 1px solid rgba(255, 93, 93, .25);
  color: #fff;
}
.ipea-emf-alert--success{
  background: rgba(102, 255, 178, .12);
  border: 1px solid rgba(102, 255, 178, .25);
  color: #fff;
}
