@charset "utf-8";
/* CSS Document */

body{
	
	/*background-size: 100vw 100vh;*/
	/*background-attachment:fixed;*/
	background: #f2f2f2;
	border-top: 6px solid #00abf0;
	margin: 0;
	font-family: "Roboto";
}

form{
	/*width:450px;*/
	
	margin:auto;
	background: #fff;
	max-width: 1000px;
	padding: 30px;
	box-sizing:border-box;
	margin-top:20px;
	box-shadow: 0px 0px 3px grey;
	border-radius: 5px;
}

h2{
	
	color: #00abf0;
	text-align:center;
	margin:0;
	font-size:30px;
	margin-bottom: 20px;
}

.intro{
	text-align:center;
	margin-bottom: 40px;
}


input, textarea{
	 
     font-size: 16px;
     color: #303F9F;
     width: 45%;
     outline: none;
     padding: 15px;
     background: none;
     border: none;
     border-bottom: 1px solid #00abf0; 
}
input[type="radio"] {
	width: 20px;
}
textarea{
	min-height: 140px;
	max-height: 200px;
	max-width: 100%;
}

#boton{
	/*background: #303F9F;*/
	background: #00abf0;
      border-radius: 1px;
      border: 2px solid #f2f2f2;
      color: #fff;
      cursor: pointer;
      display: inline-block;
      font-family: "Roboto";
      font-size: 16px;
      padding: 15px;
      width: 100%;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
}

#boton:hover{
	cursor: pointer;
	background: #303F9F;
	
}

.info{
	text-align: justify;
}
.center {
	text-align: center;
}
img{
	box-shadow: 0px 0px 3px grey;
}

@media only screen and (max-device-width: 480px) {
	input, textarea {
	 width: 100%;
	}
}
















