/** {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
}

h1 {
	margin: 20px 0 20px 0;
	font-size: 25px;
	color: #0000DD;
}

h2 {
	font-size: 20px;
}

img {
	margin: 20px 0 10px 0; 
}

body {
	background: #F2F2F2;
	font-size: 16px;
	font-family: sans-serif;
}*/

.wrap {
	background-color: #F2F2F2;
	width: 100%;
	max-width: 500px;
	margin: auto;
}

#contacto {
	width: 100%;
	margin-top: 15px;
	padding: 20px;
	background: #FCFCFC;
	overflow: hidden;
	box-shadow: 0 3px 6px grey;
	border-top: 6px solid #DD0000;
}

#contacto input[type="text"],
#contacto input[type="number"],
#contacto input[type="email"],
#contacto textarea {
	border: 1px solid #536DFE;
	border-radius: 2px;
	padding: 10px;
	width: 100%;
	display: block;
	margin-bottom: 10px;
	font-family: sans-serif;
	font-size: 1em;
	color: #141930;
}

#contacto input[type="text"]:focus,
#contacto input[type="number"]:focus,
#contacto input[type="email"]:focus,
#contacto textarea:focus {
	border: 2px solid #536DFE;
	padding: 11px;
}

#contacto textarea {
	max-width: 100%;
	min-width: 100%;
	max-height: 300px;
	min-height: 150px;
}

.alert {
	padding: 1em;
	color: #FFFFFF;
	border-radius: 2px;
	margin-bottom: 10 px;
	font-size: 14px;
}

.alert.error {
	background: #FF1111;
	margin-bottom: 10px;
}

.alert.success {
	background: #006600;
	margin-bottom: 10px;
}

.btn,
#contacto input[type="submit"]{
	padding: 12px;
	background: #EE0000;
	color: #FFFFFF;
	font-size: 1em;
	font-family: 'Montserrat', sans-serif;
	border-radius: 2px;
	border: none;
	float: left;
	cursor: pointer;
}

#contacto input[type="submit"]:hover{
	background: #BB0000;
}






