@charset "utf-8";
/* CSS Document */

body {
	margin:0px; 
	padding:10px;
	border:#E2E2E2 solid 3px;	
}

.form {
	font-family: Helvetica, Arial, sans-serif;
	background-color:#D2D2D2;
	padding:10px;
	}
	
.error{
	color:#F00;
	margin-left:10px;
	}
	
#msg-title{
	width:100%;
	text-align:center;
	margin:0;
	padding:0;
	}
	
.form-input {
	font-family: Helvetica, Arial, sans-serif;
  	font-weight:500;
	font-size: 16px;
	color:#292929;
	border-radius: 0;
	border:#D2D2D2 solid 3px;
	line-height: 18px;
	background-color:#fff;
	padding: 5px 5px 5px 38px;
	margin-bottom: 10px;
	width:100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.form-input:focus{
	background: #FFF;
	box-shadow: 0;
	border:#D2D2D2 solid 3px;
	color: #060;
	outline: none;
}


/* Icons ---------------------------------- */
#name{
	background-image: url(imgform/name.svg);
	background-size: 20px 20px;
	background-position: 11px 5px;
	background-repeat: no-repeat;
}

#name:focus{
}

#email{
	background-image: url(imgform/email.svg);
	background-size: 20px 20px;
	background-position: 11px 5px;
	background-repeat: no-repeat;
}

#email:focus{
}


#phone{
	background-image: url(imgform/phone.svg);
	background-size: 20px 20px;
	background-position: 11px 5px;
	background-repeat: no-repeat;
}

#phone:focus{
}

#comment{
	background-image: url(imgform/comment.svg);
	background-size: 20px 20px;
	background-position: 11px 5px;
	background-repeat: no-repeat;
}

textarea {
    width: 100%;
    height: 138px;
    line-height: 150%;
    resize:vertical;
}

input:hover, textarea:hover,
input:focus, textarea:focus {
	background-color:white;
	border:#E2E2E2 solid 3px;
	
}

#button-verde{
	-webkit-appearance: none;  	
	float:right;
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	width: 200px;
	border: #D2D2D2 solid 4px;
	cursor:pointer;
	background-color: #36C536;
	color:white;
	font-size:24px;
	padding-top:10px;
	padding-bottom:10px;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
  	font-weight:700;
}

#button-verde:hover{
	background-color: #fff;
	color: #36C536;
}
	

#risposta{
	padding:10px;
	font-size:16px;
	border:#E2E2E2 solid 3px;	
	color:#999;
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	}

