/*
Theme Name:   Child-Hello Elementor
Description:  Child theme for Hello Elementor
Author:       shyam
Author URI:   balajimediahub.com
Template:     hello-elementor
Version:      1.0.0
Text Domain:  child_hello_elementor
*/
.cf7-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cf7-full {
    margin-bottom: 20px;
}

.cf7-col {
    display: flex;
    flex-direction: column;
}

.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.btn-submit {
    background: #000;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.btn-submit:hover {
    background: #333;
}

@media(max-width:768px){
    .cf7-grid {
        grid-template-columns: 1fr;
    }
}