﻿/** CSS per contact form ---**/
#responsive-form{
max-width:1200px /*-- cambia questo con la larghezza desiderata --*/;
margin:0 auto;
width:100%;
}
.form-row{
width: 100%;
}
.column-half, .column-full{
float: left;
position: relative;
padding: 0.65rem;
width:100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.clearfix:after {
content: "";
display: table;
clear: both;
}
 
/**---------------- Media query ----------------**/
@media only screen and (min-width: 48em) { 
.column-half{
width: 50%;
}
}

/**---------------- Per spostare il bottone invio a destra ----------------**/
 
.wpcf7-submit{
float: none;
	
}
 
/**---------------- Per cambiare il colore del bottone ----------------**/
.wpcf7-submit{ 
background: #ffffff/*-- colore sfondo --*/;
color: white/*-- colore testo --*/; 
}
 
/**---------------- Colore del bottone con il passaggio del mouse ----------------**/
.wpcf7-submit:hover{ 
background: #f3f3f3;
color: #ffffff; 
}
 
/**---------------- Per personalizzare il messaggio di successo ----------------**/
 
div.wpcf7-mail-sent-ok {
text-shadow: none;
border: none;
background: #8BC34A;
color: white;
font-family: 'Raleway';
}