/* ============================================================
   SEC-386 — "Consult Form (Home Redesign)" block (form only).

   The base form look is inherited from .home-consult* in home.css
   (globally enqueued). The only difference here: without the right
   configurator column the form must fill the full width, whereas
   .home-consult__form-wrapper is normally fixed to ~66.67%.
   ============================================================ */

.home-consult--form-only .home-consult__form-wrapper {
    width: 100%;
}

/* Submit button.
   CF7 forms reused here (e.g. the "order-form") carry
   .secondary-button.secondary-button_white — a white outline button meant
   for dark backgrounds, so it looks wrong on the light form. Force the
   primary blue (#0047bb, same as .main-button) regardless of the form used. */
.home-consult--form-only .wpcf7-submit {
    color: #fff;
    background-color: #0047bb;
    border-color: #0047bb;
}
.home-consult--form-only .wpcf7-submit:hover {
    color: #fff;
    background-color: #042760;
    border-color: #042760;
}