@charset "UTF-8";
body {
	background-size: 100vh;
	margin: 0px auto;
}

form {
    width: 550px;
	margin: auto;
	padding: 10px 20px;
	box-sizing: border-box;
	margin-top: 20px;
	border-radius: 7px;
}
form-row{
	width: 200px;
	margin: auto;
	padding: 10px 20px;
	box-sizing: border-box;
	margin-top: 20px;
	border-radius: 7px;
	}


h2 {
	color: #000;
	text-align: center;
	margin: 0;
	font-size: 18px;
	margin-bottom: 10px;
}

input, textarea {
	width: 100%;
	margin-bottom: 15px;
	padding: 5px;
	box-sizing: border-box;
	font-size: 16px;
	border: none;
	color:black;
	}
	
textarea {
	min-height: 100px;
	max-height: 200px;
	max-width: 100%;

}

#boton{
	color: #FFF;
	max-width: 100;
	background-color: #C03;	
}

#boton:hover {
	corsor: pointer;
}

@media (max-width:480px) {
	form{
		width: 100%;
   }
}

