*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	background-image: url(../img/banner.jpg);
	background-size:100vw 100vh;
	background-attachment:fixed;
	margin: 0;
}

.contenedor{
	/*background-image: url(../img/banner.jpg);*/
	width:100%;
	height:1000px;
	background-size: cover;
	position:relative;
	
	display:flex;
	flex-direction:column;
	/*justify-content:center;*/
	justify-content:justify;
	align-items:center;
	
}
.contenedor:before{
	content: "";
	width:100%;
	height:100%;
	background: rgb(40,180,99);
	position: absolute;
	opacity:0.7;
}

.contenedor h1, h4, h5{
	position: relative;
	text-align:center;
	color:#fff;
}
.contenedor1 {
	position:relative;
	width: 120px;
}
form{
	position: relative;
	width: 450px;
	margin: auto;
	background:rgba(20,90,50,0.8);
	padding: 10px 20px;
	box-sizing: border-box;
	margin-top: 20px;
	border-radius: 7px;
}

h2{
	color:#fff;
	text-align: center;
	margin: 0;
	font-size: 30px;
	margin-bottom: 20px;
}
	
input, textarea{
	width: 100%;
	margin-bottom: 20px;
	padding: 7px;
	box-sizing: border-box;
	font-size: 17px;
	border: none;
}

textarea{
	min-height: 100px;
	max-height: 200px;
	max-width: 100%;
}

#boton{
	background: #0E6251;
	color: #fff;
	padding: 20px;
}

#boton:hover{
	cursor:pointer;
}

@media(max-width:480px){
	form{
		width:100%;
	}
}
h5{	
	color:#fff;
	text-align: center;
	margin: 0;
	font-size: 14px;
	margin-bottom: 18px;
}
h1{
	text-align:center;
	color:#fff;
	font-size: 30px;
	/*background: rgba(0,0,0,0.4);*/
/*	margin-top: 20px;	*/
}