*{
	box-sizing: border-box;
}


.contenido{
	margin-top: 10%;
	margin-left: 5%;
	margin-right: 5%;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
}

/*FRASE COMPLETA*/
.titulo{
	width: auto;
}

.p1, .p2{
	font-family: 'Lato', sans-serif;
	font-size: 50pt;
	padding-bottom: 5%;
}

.p2{
	color: #52A29F;
}

.formulario{
	width: 50%;
}

.caja-nombre, .caja-apellidos,
.caja-email, .caja-telefono{
	width: 47%;
	height: 70px;
	border: 2px solid #52A29F;
	border-radius: 10px;
	margin-bottom: 25px;
	padding-left: 10px;
}
.caja-nombre, .caja-email{
	margin-right: 5%;
}

.caja-mensaje{
	width: 100%;
	height: 150px;
	padding-top: 15px;
	border: 2px solid #52A29F;
	border-radius: 10px;
	margin-right: 4%;
	margin-bottom: 25px;
	padding-left: 10px;
}

.escondido{ display: none; }

input[type=text]:focus {
	background-color: transparent;
}

input:-webkit-autofill {
    box-shadow: 0 0 0px 1000px #eeeeee inset;
}

.boton{
	width: 60%;
	margin-right: auto;
	margin-left: auto;
}

.btn-form{
	width: 100%;
	height: 60px;
	background-color: #52A29F;
	font-size: 15pt;
	color: #ffffff;
	border: none;
	border-radius: 10px;
}

/*RESPONSIVE*/
@media (max-width: 1024px) {
	.contenido{
		margin-top: 10%;
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		justify-content: space-evenly;
		margin-left: 5%;
		margin-right: 5%;
	}
	.titulo{
		width: 100%;
		text-align: center;
	}
	.p1{
		padding-bottom: 4%;
	}
	.formulario{
		width: 100%;
		display: flex;
		flex-direction: column;
	}
}

@media (min-width:300px) and (max-width:500px){
	.contenido{
		margin-top: 80px;
	}
	.p1, .p2{
		font-family: 'Lato', sans-serif;
		font-size: 25pt;
	}
	.formulario{
		margin: 0;
		padding: 5%;
	}
	.cajas1-form, .cajas2-form{
		display: flex;
		flex-direction: column;
	}
	.caja-nombre, .caja-apellidos,
	.caja-email, .caja-telefono{
		width: 100%;
		height: 50px;
	}
	.caja-mensaje{
		width: 100%;
	}
}



