.elementor-459 .elementor-element.elementor-element-5db1ec60{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}

/* Start custom CSS *//* =====================================================================
   Latino Advisors of America / Rápido Préstamos — Loan Application skin
   Matched to the homepage (latinoadvisorsofamerica.com):
     • Brand green  #007837   accent green #61CE70
     • Blue tint    #F1FAFF   (light section backgrounds)
     • Fonts        Roboto (body) + Roboto Slab (headings)  — theme already loads them
     • Shape        rounded cards + full pill buttons (their site is very rounded)
   ---------------------------------------------------------------------
   WHERE THIS GOES: WP Admin → Appearance → Customize → Additional CSS.
   Scoped to .centrex-app-container, so it only touches the form.
   ===================================================================== */

.centrex-app-container {
  --la-green: #007837;
  --la-green-dark: #00592a;
  --la-accent: #61CE70;
  --la-tint: #F1FAFF;
  --la-ink: #101010;
  --la-text: #54595F;
  --la-muted: #7A7A7A;
  --la-border: #d6d5d5;

  max-width: 800px;
  margin: 0 auto;
  font-family: 'Roboto', -apple-system, Segoe UI, sans-serif;
  color: var(--la-text);
}

/* ---- Progress bar ---- */
.centrex-app-container .centrex-progress-container { margin-bottom: 24px; }
.centrex-app-container .step-text {
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--la-green);
  margin-bottom: 8px;
}
.centrex-app-container .centrex-progress-bar-background {
  height: 9px;
  background: #e8eef0;
  border-radius: 999px;
  overflow: hidden;
}
.centrex-app-container .centrex-progress-bar-fill {
  height: 9px;
  background: linear-gradient(90deg, var(--la-green), var(--la-accent));
  border-radius: 999px;
}

/* ---- Card: wraps the WHOLE form so the Next/Previous buttons stay inside it
        (the button row is a sibling of .rendered-form, not a child, so styling
        only .rendered-form left the buttons floating outside the card). ---- */
.centrex-app-container #formRenderContainer {
  background: #fff;
  border: 1px solid var(--la-border);
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: 0 10px 34px rgba(0, 120, 55, .08);
}
.centrex-app-container .rendered-form {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

/* ---- Section headers (filled green bar — echoes their PDF + site green) ---- */
.centrex-app-container .rendered-form h3 {
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  background: var(--la-green);
  padding: 12px 20px;
  border-radius: 12px;
  margin: 6px 0 22px;
}

/* ---- Labels ---- */
.centrex-app-container .form-group label,
.centrex-app-container .formbuilder-address-composite-label {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--la-ink);
  margin-bottom: 6px;
}
.centrex-app-container .formbuilder-address-composite-label {
  font-family: 'Roboto Slab', serif;
  color: var(--la-green-dark);
}
.centrex-app-container .formbuilder-required { color: var(--la-green); }

/* ---- Inputs ----
   :not(.filepond--root) keeps these input styles OFF the file-upload box
   (FilePond's root also carries .form-control). FilePond is left fully native. */
.centrex-app-container .form-control:not(.filepond--root) {
  border: 1px solid var(--la-border) !important;
  border-radius: 10px !important;
  height: 46px;
  padding: 0 15px;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  background: #fff !important;
  color: var(--la-ink);
  box-shadow: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.centrex-app-container textarea.form-control { height: auto; min-height: 104px; padding: 12px 15px; }
.centrex-app-container .form-control:not(.filepond--root):focus {
  border-color: var(--la-green) !important;
  box-shadow: 0 0 0 3px rgba(0, 120, 55, .15) !important;
  outline: none;
}
.centrex-app-container select.form-control { cursor: pointer; }

/* ---- Currency + SSN affordances ---- */
.centrex-app-container .centrex-currency-symbol { color: var(--la-green); font-weight: 700; }
.centrex-app-container .centrex-ssn-toggle {
  color: var(--la-green);
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
}

/* ---- File upload: intentionally NOT styled. FilePond renders in its own
        native style; my CSS no longer touches it (that was the source of the
        squished dropzone + dead space). ---- */

/* ---- Loose paragraph copy (notes) — readable fine print ---- */
.centrex-app-container .rendered-form .form-group > p {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--la-muted);
}

/* ---- Agreement / terms block (the long legal paragraph sits right after the
        file upload). Contain it in a scrollable, fine-print box so it stops
        dominating the page. If you move it away from directly under the upload,
        give that paragraph a CSS class instead and target that. ---- */
.centrex-app-container .centrex-filepond-wrapper + .form-group > p {
  max-height: 190px;
  overflow-y: auto;
  background: #f7faf8;
  border: 1px solid var(--la-border);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 11.5px;
  line-height: 1.65;
  text-align: justify;
  color: var(--la-muted);
}

/* ---- Buttons (full pills, like the homepage) ---- */
.centrex-app-container .centrex-forms-button-container {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  justify-content: flex-end;
}
/* Previous on the left, Next / Submit on the right (DOM order is Next, Prev). */
.centrex-app-container .centrex-forms-button-container .prev-btn { order: 1; margin-right: auto; }
.centrex-app-container .centrex-forms-button-container .next-btn,
.centrex-app-container .centrex-forms-button-container #centrex-submit { order: 2; }
.centrex-app-container .btn-primary,
.centrex-app-container #centrex-submit {
  background: var(--la-green) !important;
  border: none !important;
  border-radius: 999px !important;
  color: #fff !important;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 38px !important;
  transition: background .15s ease, transform .05s ease;
}
.centrex-app-container .btn-primary:hover,
.centrex-app-container #centrex-submit:hover { background: var(--la-green-dark) !important; }
.centrex-app-container .btn-primary:active,
.centrex-app-container #centrex-submit:active { transform: translateY(1px); }
.centrex-app-container .btn-secondary {
  background: #fff !important;
  color: var(--la-green) !important;
  border: 1px solid var(--la-green) !important;
  border-radius: 999px !important;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 30px !important;
}
.centrex-app-container .btn-secondary:hover { background: var(--la-tint) !important; }

/* ---- Small screens ---- */
@media (max-width: 600px) {
  .centrex-app-container #formRenderContainer { padding: 18px 16px; border-radius: 16px; }
  .centrex-app-container .centrex-forms-button-container { flex-direction: column; }
  .centrex-app-container .btn-primary,
  .centrex-app-container .btn-secondary,
  .centrex-app-container #centrex-submit { width: 100%; text-align: center; }
}/* End custom CSS */
