/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://elementor.com/hello-theme/
 Description:  A child theme for the Hello Elementor theme
 Author:       Your Name
 Author URI:   https://yourwebsite.com
 Template:     hello-elementor
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  hello-elementor-child
*/

/* Add your custom CSS below this line */
<div class="form-row">
<div class="form-group">
        [text* lead-firstname id:lead-firstname placeholder "First Name"]
</div>
<div class="form-group">
        [text* lead-lastname id:lead-lastname placeholder "Last Name"]
</div>
</div>
 
<div class="form-group">
    [email* lead-email id:lead-email placeholder "Email"]
</div>
 
<div class="form-group">
    [tel* lead-phone id:lead-phone placeholder "Phone Number"]
</div>
 
<div class="textarea">
    [textarea* lead-comment id:lead-comment placeholder "Comment"]
</div>
 
[submit "Send"]
 
<style>
@media (min-width: 767px) {
   .form-row {
        display: flex;
        gap: 20px;
   }
}
</style>