/* IPEA Contact Form (2-step) – styled like footer gradient */
.ipea-form-wrap{
  width:100%;
  max-width: 860px;
  margin: 24px auto;
  padding: 0 16px;
}

.ipea-form{
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #0b063d 0%, #1b0b6b 52%, #070225 100%);
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
}

.ipea-form__header{
  padding: 26px 26px 16px 26px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  gap: 16px;
  flex-wrap: wrap;
}

.ipea-form__logo{
  height: 38px;
  width: auto;
  display:block;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}

.ipea-form__title{
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .2px;
}

.ipea-form__subtitle{
  width: 100%;
  font-size: 13px;
  opacity: .88;
  margin-top: -6px;
}

.ipea-steps{
  padding: 16px 26px 10px 26px;
}

.ipea-steps__bar{
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  overflow:hidden;
}

.ipea-steps__progress{
  height: 100%;
  background: rgba(255,255,255,.92);
  border-radius: 999px;
  transition: width .25s ease;
}

.ipea-steps__labels{
  display:flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  opacity: .92;
}

.ipea-steps__labels span{
  opacity:.55;
  font-weight: 800;
}
.ipea-steps__labels span.is-active{ opacity: 1; }

.ipea-step{
  display:none;
  padding: 18px 26px 26px 26px;
}
.ipea-step.is-active{ display:block; }

.ipea-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 14px;
}
@media (max-width: 720px){
  .ipea-grid{ grid-template-columns: 1fr; }
  .ipea-form__header{ padding: 22px 18px 14px 18px; }
  .ipea-steps{ padding: 14px 18px 8px 18px; }
  .ipea-step{ padding: 16px 18px 20px 18px; }
}

.ipea-field label{
  color: #fff;
  display:block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
}

.ipea-field input,
.ipea-field select,
.ipea-field textarea{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 12px 12px;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
  font-size: 14px;
}

.ipea-field textarea{ resize: vertical; }

.ipea-field input:focus,
.ipea-field select:focus,
.ipea-field textarea:focus{
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.11);
}

.ipea-help{
  margin-top: 6px;
  font-size: 12px;
  opacity: .82;
}

.ipea-error{
  margin-top: 6px;
  font-size: 12px;
  color: #ffd1d1;
  font-weight: 800;
  min-height: 16px;
}

.ipea-upload{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.ipea-actions{
  display:flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.ipea-btn{
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
  transition: transform .06s ease, background .15s ease, border-color .15s ease;
}

.ipea-btn:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.50);
}
.ipea-btn:active{ transform: translateY(1px); }

.ipea-btn--primary{
  background: #2f3fb4;
  color: #fff;
  border-color: #2f3fb4;
}
.ipea-btn--primary:hover{ background: #24339b; border-color: #24339b; }

.ipea-note{
  margin-top: 14px;
  font-size: 12px;
  opacity: .75;
  line-height: 1.45;
}


/* Step 2 layout tweaks */
.ipea-step[data-step="2"] .ipea-grid{
  grid-template-columns: 1fr;
}


/* Textarea should be white with black text (Beschrijving) */
.ipea-field textarea{
  background: #fff;
  color: #000;
  border-color: rgba(0,0,0,.15);
}
.ipea-field textarea:focus{
  background: #fff;
  color: #000;
  border-color: rgba(255,255,255,.55);
}
