#formulario .contenedor {
	margin-top:25px;
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
}

#formulario .form1 {
	justify-content: center;
	}

#formulario {
	background-image:  url(../IMAGES/fondo-formulario.jpg);
	background-size: 100vw 100vh;
	background-attachment:fixed;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	padding-top:25px;
	padding-bottom:25px;
}


#formulario .contenedor form {
	width: 450px;
	margin:auto;
	background: rgba(0,0,0,0.4);
	padding: 10px 20px;
	box-sizing: border-box;
	border-radius: 9px;
}

#formulario .contenedor h2 {
	color:#FFF;
	text-align:center;
	margin: 0;
	font-size: 30px;
	margin-bottom:20px;
}

input, textarea {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
    width: 100%;
	margin-bottom: 20px;
	padding: 7px;
	box-sizing: border-box;
	font-size: 15px;
	border-radius: 2px;
	border: none;
}

textarea {
	min-height: 80px;
	max-height: 180px;
	max-width: 100%;
	
}

#boton {
	background: #fd8204;
	color:#FFF;
	padding: 20px;
}

#boton:hover {
	cursor: pointer;
}

@media (max-width:320px) {
	#formulario .form1 {
		width: auto;	
		max-width: 100%;
		box-sizing: border-box;
	}
}

@media (max-width:360px) {
	#formulario .form1 {
		width: auto;	
		box-sizing: border-box;

	}
}


@media (min-width:480px) {
	#formulario .form1 {
		width: auto;	
	}
}

@media (max-width:768px) {



}