html, body{
	padding: 0;
	margin: 0;
	font-size: 14px;
}
body *{
	color: #525c66;
}
h1{
	text-align: center;
}
.center{
	width: 400px;
	margin: 60px auto 0;
}
.button{
	display: block;
	background-color: #1eacc2;
	border: none;
	color: white;
	text-transform: uppercase;
	cursor: pointer;
	outline: none;
	height: 30px;
	padding: 0 25px;
}
.button.btn-cnt{
	margin: 0 auto;
	margin-top: 10px;
}
.button:active {
	box-shadow: inset 0px 0px 7px 0px rgba(0,0,0,0.4);
	-webkit-box-shadow: inset 0px 0px 7px 0px rgba(0,0,0,0.4);
	-moz-box-shadow: inset 0px 0px 7px 0px rgba(0,0,0,0.4);
}
label{
	line-height: 30px;
	font-size: 16px;
	width: 200px;
	display: inline-block;
}
input[type="text"], input[type="email"], input[type="password"]{
	height: 30px;
	border: 0;
	padding: 0 10px;
	background-color: #f7f7f7;
}
.row{
	margin-bottom: 10px;
}
.error{
	color: red;
}
.success{
	color: green;
	font-weight: bold;
}
.steps li{
	display: none;
}
.steps li.active{
	display: block;
}
.t-center{
	text-align: center;
}