.wt-form-lien-he form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Từ item thứ 3 trở đi sẽ chiếm toàn bộ chiều rộng (1 cột mỗi dòng) */
.wt-form-lien-he form>*:nth-child(n+3) {
    grid-column: span 2;
}

.wt-form-lien-he .uagb-forms-form-hidden-data,
.wt-form-lien-he [class*="uagb-form-reacaptcha-error"] {
    display: none !important;
}

.wt-form-lien-he .wp-block-button {
    grid-column: span 2 !important;
    margin-top: 10px !important;
    /* Cộng thêm 10px với 30px gap của grid để thành 40px */
}

.wt-form-lien-he .wp-block-button button {
    justify-content: center !important;
}


/* Responsive: trên điện thoại thì tất cả đều chuyển thành 1 cột */
@media (max-width: 767px) {
    .wt-form-lien-he form {
        grid-template-columns: 1fr;
    }

    .wt-form-lien-he form>*:nth-child(n+3) {
        grid-column: span 1 !important;
    }

    .wt-form-lien-he .wp-block-button {
        grid-column: span 1 !important;
    }
}