/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


/* ================================
   FORM WRAPPER
================================ */
#gform_wrapper_2 {
    max-width: 800px; /* Adjust as needed */
    margin: 0 auto;
    padding: 20px;
    background-color: #e30613; /* Red background */
    box-sizing: border-box;
}

/* FORM TITLE */
#gform_wrapper_2 .gform_heading {
    text-align: center;
    margin-bottom: 20px;
}

#gform_wrapper_2 .gform_title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

/* FIELDS WRAPPER */
#gform_wrapper_2 .gform_body {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between fields */
}

/* EACH FIELD */
#gform_wrapper_2 .gform_fields .gfield {
    flex: 1 1 calc(50% - 10px); /* Two fields per row */
    box-sizing: border-box;
}

#gform_wrapper_2 .gfield input,
#gform_wrapper_2 .gfield select {
    width: 100%;
    padding: 15px 18px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

/* PLACEHOLDER TEXT */
#gform_wrapper_2 .gfield input::placeholder {
    color: #666;
}

/* SUBMIT BUTTON */
#gform_wrapper_2 .gform_footer input#gform_submit_button_2 {
    margin-top: 20px;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    background-color: #fff;
    color: #e30613;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    float: right;
    transition: 0.3s;
}

#gform_wrapper_2 .gform_footer input#gform_submit_button_2:hover {
    background-color: #f5f5f5;
}

/* REMOVE LABELS */
#gform_wrapper_2 .gfield_label {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    #gform_wrapper_2 .gform_fields .gfield {
        flex: 1 1 100%;
    }
}
