/*form styles*/
#hg_form {
	font: 15px arial grey;
	margin: 5px auto;
	text-align: center;
	position: relative;
	color: black;
	left: 50%;
}
#hg_form fieldset {
	background: white;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	
	box-sizing: border-box;
	width: 400px;
	margin-left: -200px;
	
	/*stacking fieldsets above each other*/
	position: absolute;
}
/*Hide all except first fieldset*/
#hg_form fieldset{
	display: none;
}
#hg_form a{
	color: black;
}
/*inputs*/
#hg_form input, #hg_form textarea, #hg_form select {
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	font-family: montserrat;
	color: #2C3E50;
	font-size: 15px;
}
/*buttons*/
#hg_form .action-button {
	width: 100px;
	background: grey;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 5px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
#hg_form .action-button:hover, #hg_form .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #776655;
}
/*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;
}