/* CSS Document */
@charset "UTF-8";
@charset 'iso-8859-15';


form {
	width:98%;
	

	margin:10px;
	padding:10px;
	box-sizing: border-box;
	
	}
	
	
	label{
		color:#000;
		font-size:14px;
		display:block;
		width:100%;
		padding:10px;
		}
		
		textarea{
			resize:vertical;
			max-height:150px;
			min-height:100px;
		}
		

	input, textarea{
		margin-bottom:10px;
		width:100%;
		padding:10px;
		box-sizing: border-box;
		border:1px;
		border-style:solid;
		border-color:#CCC;
		
					font-family: 'Raleway', sans-serif;
	font-size:20px;
	font-weight:normal;
	line-height:1.4;
	color:#000;
		}

	input:focus, textarea:focus{
		border:1px color:#1668c4;}
		
		input[type="submit"]{
			font-size:24px;
			font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
			margin-bottom:0px;
			background:#78db03;
			border:none;
			color:#fff;}
			
			
		input[type="submit"]:hover{
			background:#78ca18;
			cursor:pointer;
		}
		


/* Cambio los Colores del Placeholder de los Formularios*/		
		::-webkit-input-placeholder {
   color: #0073b2;
}

:-moz-placeholder { /* Firefox 18- */
   color: #0073b2;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #0073b2;  
}

:-ms-input-placeholder {  
   color: #0073b2;  
}
		