/* =========================================================
   EINBL – Get Started Form Styles (ONLY FORM)
   Shared across EINBL Get Started pages
========================================================= */

/* FORM WRAPPER GRID (form + trust card) */
.einbl-gs-formwrap{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  align-items:start;
}

/* FORM CARD */
.einbl-gs-formcard{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  box-shadow:0 18px 44px rgba(0,0,0,.06);
  overflow:hidden;
}

.einbl-gs-formhead{
  padding:18px 18px 14px;
  border-bottom:1px solid #eef2f7;
  background:linear-gradient(180deg, rgba(255,215,0,.18), rgba(255,215,0,0));
}

.einbl-gs-formhead h3{
  margin:0 0 4px;
  font-size:16px;
  font-weight:950;
  color:#001938;
}

.einbl-gs-formhead p{
  margin:0;
  font-size:13px;
  color:#475569;
  line-height:1.6;
}

/* FORM BODY */
.einbl-gs-form{
  padding:16px 18px 18px;
}

.einbl-gs-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:12px;
}

.einbl-gs-field{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.einbl-gs-field label{
  font-size:12.5px;
  font-weight:900;
  color:#0f172a;
}

.einbl-gs-field input,
.einbl-gs-field select,
.einbl-gs-field textarea{
  width:100%;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:10px 12px;
  font-size:13.5px;
  outline:none;
  background:#ffffff;
  transition:.2s ease;
}

.einbl-gs-field input:focus,
.einbl-gs-field select:focus,
.einbl-gs-field textarea:focus{
  border-color:rgba(0,25,56,.45);
  box-shadow:0 0 0 4px rgba(0,25,56,.08);
}

.einbl-gs-field textarea{
  min-height:96px;
  resize:vertical;
}

.einbl-gs-span2{
  grid-column:span 2;
}

/* SECTION DIVIDERS */
.einbl-gs-divider{
  grid-column:span 2;
  margin:8px 0 2px;
  padding-top:10px;
  border-top:1px solid #eef2f7;
  font-size:12px;
  font-weight:950;
  color:#0f172a;
}

.einbl-gs-divider small{
  font-weight:700;
  color:#64748b;
  margin-left:6px;
}

/* CONSENT */
.einbl-gs-consent{
  margin-top:12px;
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:12.5px;
  color:#475569;
  line-height:1.5;
}

.einbl-gs-consent input{
  margin-top:3px;
}

.einbl-gs-consent a{
  color:#001938;
  font-weight:900;
  text-decoration:none;
}

.einbl-gs-consent a:hover{
  text-decoration:underline;
}

/* FORM ACTIONS */
.einbl-gs-form-actions{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

/* RESPONSIVE */
@media (max-width: 992px){
  .einbl-gs-formwrap{
    grid-template-columns:1fr;
  }
  .einbl-gs-grid{
    grid-template-columns:1fr;
  }
  .einbl-gs-span2,
  .einbl-gs-divider{
    grid-column:span 1;
  }
}
