/*form styles*/
#regform {
	width: 100%;
	position: relative;
    z-index: 1;
}
#regform fieldset {
	border: 0 none;
	padding: 0px 20px;
	box-sizing: border-box;
	width: 100%;
	margin: 0 0%;
	height:auto;
	
	/*stacking fieldsets above each other*/
	position: relative;
}
/*Hide all except first fieldset*/
#regform fieldset:not(:first-of-type) {
	display: none;
}
/*buttons*/
#regform .action-button {
	width: 100px;
	background: #27AE60;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
#regform .action-button:hover, #regform .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}
#regform .has-error{color:#F00;}

/*headings*/
.fs-title {
	font-size: 15px;
	text-transform: uppercase;
	color: #2C3E50;
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}