body {
	background: #ccc;
	background: url(../../assets/images/bg_tutwuri.png);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.login-bg {
	background: #ccc;
	background: url(../../assets/images/bg_tutwuri.png);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media (min-width: 768px) {
	.register-zone {
		width: 480px;
		margin: 1% auto;
	}
}

/*progressbar*/
#progressbar {
	padding-left: 0;
	margin-bottom: 10px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar li {
	list-style-type: none;
	color: black;
	text-transform: uppercase;
	text-align: center;
	font-size: 12px;
	width: 50%;
	float: left;
	position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 30px;
	line-height: 30px;
	display: block;
	font-size: 15px;
	font-weight: bold;
	color: #333;
	background: #ddd;
	border-radius: 15px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
	content: "";
	width: 100%;
	height: 10px;
	background: #ddd;
	position: absolute;
	left: -50%;
	top: 10px;
	z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after {
	background: #27ae60;
	color: white;
}
