/*Hoja de estilos por Gabriel Acosta*/
*{
	margin:0;
	padding:0;
}
body{
	background:#000;
}

#form{
	margin: 0 auto;
	width:50%;
	padding-top:40px;
}

label{
	margin: 10px;
	display:block;
}

label input, textarea{
	width:100%;
	padding:10px;
	font-size:20px;
	font-family:"Times New Roman", Times, serif;
}

.button {
  display: inline-block;
  padding: 15px 25px;
  font-size: 24px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: #4CAF50;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
}

.button:hover {background-color: #3e8e41}

.button:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}


@media only screen
and (min-device-width : 120px)
and (max-device-width : 874px) {
	#form{
		width:100%;
	}
}