/* 
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 */
/* Contenitore per Nome e Cognome sulla stessa riga */
.row p {
    display: flex;
    gap: 10px;
    width: 100%;
}

/* Input Nome e Cognome in due colonne */
.row input[type="text"] {
    width: 50%;
}

/* Stile generale per gli input */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"] {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #ccc;
    background-color: transparent;
    border-radius: 50px;
    outline: none;
    font-size: 16px;
    color: #333;
}

/* Placeholder visibile */
.wpcf7 input::placeholder {
    color: #999;
}

/* Stile per il consenso */
.wpcf7-acceptance label {
    display: block;
    font-size: 14px;
    color: white;
    margin-top: 5px;
}

/* Checkbox di consenso */
.wpcf7 input[type="checkbox"] {
    transform: scale(1.2);
    margin-right: 10px;
}

/* Stile del bottone di invio */
.wpcf7-submit {
	 display: block;
    width: 100%;
    max-width: 300px;
	margin: 0 auto;
    padding: 12px 20px;
    background-color: black;
	border: 1px solid #F9E3B8 ;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    text-align: center;
}



.wpcf7-submit:hover {
    background-color: #F9E3B8;
	color:black;
}
.wpcf7-form-control-wrap{
	width:100%;
}
