/*importamos una fuente personalizada desde google*/
@import url(http://fonts.googleapis.com/css?family=Montserrat);

/*estilo formulario*/
#formulario {
	width: 75%;
	text-align: center;
	position: relative;

}
#formulario fieldset {
	background: #ffffff;
	border: 0 none;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 20px 30px;
	width: 87%;
	
	position: relative;
}
/*Ocultamos todos menos el primer fieldset*/
#formulario fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
#formulario input[type=text],#formulario textarea {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 85%;
	font-family: montserrat;
	color: #2C3E50;
	font-size: 12px;
}
/*buttons*/
#formulario .action-button {
	width: 100px;
	background: #000;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
#formulario .action-button:hover,#formulario .action-button:focus {
	-webkit-box-shadow: 0 0 0 2px white, 0 0 0 3px #000;
	box-shadow: 0 0 0 2px white, 0 0 0 3px #000;
}
/*headings*/
.fs-title {
	font-size: 12px;
	text-transform: uppercase;
	color: #2C3E50;
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}
/*progreso*/
#progreso {
	margin-bottom: 30px;
	overflow: hidden; 
	counter-reset: step; /*CSS contador para numerar los pasos, lo aprendi en http://www.w3schools.com/*/
}
#progreso li {
	list-style-type: none;
	color: #000;
	text-transform: uppercase;
	font-size: 9px;
	width: 50%;
	float: left;
	position: relative;
}
#progreso li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #333;
	background: #c0c0c0;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}
/*conectores de progreso*/
#progreso li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: #c0c0c0;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*lo pone detrás de los números*/
}
#progreso li:first-child:after {
	/*el conector no es necesario antes de que el primer paso*/
	content: none; 
}
/*marca activo/completado los pasos en verde*/
/*El numero del paso y el conecto quedaran en verde*/
#progreso li.active:before,#progreso li.active:after {
	background: #27AE60;
	color: white;
}