@charset "utf-8";
body{
	font-weight: bold;
    text-decoration: none;
	color:#FFF;
	font-family:Arial, Helvetica, sans-serif;
}
form {
    width:450px;
    margin:auto;
   	background: #4359DC;
    background: -webkit-linear-gradient(top, #4359DC 0%,#3B3754 100%);
    background: -moz-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
    background: -o-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
    background: -ms-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
    background: linear-gradient(top, #4359DC 0%,#3B3754 100%);
	padding:10px 20px;
	box-sizing:border-box;
	margin-top:20px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px
}
h2{
	text-align:center;
	margin:0;
	font-size:24px;
	margin-bottom:20px;
}
input, textarea {
	width:100%;
	margin-bottom:20px;
	border-radius: 5px;
    padding: 7px;
	box-sizing:border-box;
	font-size:17px;
    border:none;
    background: #FFF;
    color: #000;
	font-weight:bold;
	font-family:Arial, Helvetica, sans-serif;
}
textarea {
	min-height:100px;
	max-height:200px;
	max-width:100%;
    background: #FFF;
    color: #000;
    border-radius: 10px 20px;
}
#boton{
	color:#1e3966;
	background:#fff;
	padding:15px;
	font-size:20px;
	}
#boton:hover{
	background: rgba(0,0,0,0);
	box-shadow: inset 0 0 0 3px #fff;
	cursor:pointer;
	color:#fff;
	}
@media(max-width:480px){
	form{
		width:100%;
		}
	}
