/* 
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 */
.trading-contact-form{
    max-width:700px;
}

.trading-contact-form .form-row{
    display:flex;
    gap:20px;
   margin-bottom:0;
}

.trading-contact-form .form-group{
    flex:1;
    margin-bottom:20px;
}

.trading-contact-form label{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#162D50;
    margin-bottom:8px;
}

.trading-contact-form input,
.trading-contact-form select,
.trading-contact-form textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #E4EAF3;
    border-radius:10px;
    background:#fff;
    font-size:15px;
    color:#333;
    box-sizing:border-box;
    transition:.3s;
}

.trading-contact-form input:focus,
.trading-contact-form select:focus,
.trading-contact-form textarea:focus{
    border-color:#1B4D9C;
    outline:none;
}

.trading-contact-form textarea{
    height:150px;
    resize:none;
}

.cf7-btn{
    width:100%;
    background:#12284A;
    color:#fff;
    border:none;
    padding:16px;
    border-radius:10px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.cf7-btn:hover{
    background:#1C3A6E;
}

@media(max-width:768px){
    .trading-contact-form .form-row{
        flex-direction:column;
        gap:0;
    }
}