/* -----------------------------------------------------------------------------
   Forms — input styles, focus states, Bulma form overrides
----------------------------------------------------------------------------- */

/* Focus states — brand color override for all form controls */
.input:focus,
.textarea:focus,
.select select:focus {
    border-color: var(--primary-green) !important;
    box-shadow: 0 0 0 0.125em rgba(0, 168, 107, 0.25) !important;
}

/* Tighten Bulma's default field/label spacing */
.field {
    margin-bottom: 0.5rem !important;
}
.label {
    margin-bottom: 0.25rem !important;
}

/* Column gap override for compact form layouts */
.columns.is-variable.is-1 {
    --columnGap: 0.25rem;
}

/* Contact form box min-height (desktop) */
@media screen and (min-width: 769px) {
    .contact-info-box,
    .contact-form-box {
        min-height: 650px;
    }
}
