body {
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	background-color: #34495e;
}
.box {
	width: 400px;
	/*height: 500px;*/
	padding: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #191919;
	text-align: center;
}
.box h1 {
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 500;
}
.box .input{
	border: 0;
	background: none;
	display: block;
	margin: 20px auto;
	text-align: center;
	border: 2px solid #3498db;
	padding: 14px 10px;
	width: 200px;
	outline: none;
	color: #ffffff;
	border-radius: 20px;
	transition: 0.25s;
}
.box .input:focus{
	width: 280px;
	border-color: #2ecc71;
}
.box .boton {
	border: 0;
	background: none;
	display: block;
	margin: 20px auto;
	text-align: center;
	border: 2px solid #2ecc71;
	padding: 14px 40px;
	outline: none;
	color: #ffffff;
	border-radius: 24px;
	transition: 0.25s;
	cursor: pointer;
}
.box .boton:hover {
	background-color: #2ecc71;
}
textarea {
	resize: none;
}

label {
	font-weight: 100;
	font-size: 13px;
	color: #868585;
	margin: 0;
	padding: 0;
}