.box {
	width:300px;
	height:300px;
	top:50%;
	left:50%;
	text-align:center;
	border-radius: 10px;
	margin-top:30px;
}
.box h1 {
	color:#000;
	text-transform:uppercase;
	font-weight:500;
}
.box input[type = "text"],.box input[type = "password"] {
	border:0;
	background:none;
	display:block;
	margin:20px auto;
	text-align:center;
	border:2px solid #CB4154;
	padding:14px 10px;
	width:280px;
	outline:none;
	color:#000;
	border-radius:24px;
	transition:0.25s;
	text-transform:uppercase;
}
.box input[type = "text"]:focus,.box input[type = "password"]:focus {
	width:280px;
	border-color:#9A293A;
}
.box input[type = "submit"] {
	border:0;
	background:none;
	display:block;
	margin:20px auto;
	text-align:center;
	border:2px solid #CB4154;
	padding:14px 40px;
	outline:none;
	color:#FFF;
	border-radius:24px;
	transition:0.25s;
	cursor:pointer;
	background:#CB4154;
}
.box input[type = "submit"]:hover {
	background:#9A293A;
	color:#FFF;
}