/* 
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 */

/* Main Form */
.cf7-modern {
    max-width: 800px;
    margin: auto;
}

/* Two Column Layout */
.cf7-row {
    display: flex;
    gap: 20px;
}

.cf7-col {
    flex: 1;
}

@media(max-width:768px){
    .cf7-row{
        flex-direction:column;
    }
}

/* Labels */
.cf7-modern label{
    display:block;
    margin-bottom:8px;
    font-size:15px;
    font-weight:600;
    color:#fff;
}

/* Inputs */
.cf7-modern input,
.cf7-modern textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:12px;
    background:#1b1b1b;
    color:#fff;
    font-size:15px;
    transition:.35s;
    box-sizing:border-box;
}

/* Textarea */
.cf7-modern textarea{
    min-height:180px;
    resize:vertical;
}

/* Placeholder */
.cf7-modern input::placeholder,
.cf7-modern textarea::placeholder{
    color:#9b9b9b;
}

/* Focus */
.cf7-modern input:focus,
.cf7-modern textarea:focus{
    outline:none;
    border-color:#0CC0DF;
    box-shadow:0 0 15px rgba(245,180,0,.25);
}

/* Submit Button */
.cf7-modern input[type=submit]{
    width:auto;
    padding:15px 42px;
    border:none;
    border-radius:50px;
    background:#0CC0DF;
    color:#111;
    font-weight:700;
    font-size:16px;
    cursor:pointer;
    transition:.35s;
    margin-top:15px;
}

.cf7-modern input[type=submit]:hover{
    background:#0CC0DF;
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(245,180,0,.35);
}

/* Validation */
.wpcf7-not-valid{
    border-color:#ff4d4d !important;
}

.wpcf7-response-output{
    margin-top:20px;
    border-radius:10px;
    padding:15px;
}