.login-body .login-wrapper {
	height: inherit !important;
}
.login-body .login-wrapper .login-panel{
	width: 100% !important;;
}

/* Header, Top Bar, Navigation */
.sign nav {
	width: 100%;
	background: rgba(1, 150, 111, 0.25);
	border-radius: 5px;
}

.sign nav ul, .sign nav ol {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	list-style: none;
	padding: 0px 0px;
}

.sign nav li {
	margin: 12px 0px;
	font-size: 13px;
    font-weight: bold;
	line-height: 26px;
	text-align: center;
}

.sign nav li.active {
	font-weight: bold;
}

.sign nav ol {
	counter-reset: steps;
}

.sign nav ol li::before {
	content: counter(steps);
	counter-increment: steps;
	display: inline-table;
	margin-right: 10px;
	background: #13B57D;
	color: #FFF;
	text-align: center;
	font-weight: bold;
	width: 26px;
	height: 26px;
	border-radius: 13px;
}

.sign nav ol li.done::before {
	content: '✓' /*url("");*/
}

/* Mark as white the active li circles */
.sign nav ol li.active::before {
	background: #FFF;
	color: #01966F;
}
 
/* Button */
.sign input[type="submit"], .sign a.button {
	display: block;
	width: 100%;
	padding: 8px 16px;
	border-style: none;
	border-radius: 5px;
	background-color: #13B57D;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);
	font-size: 15px;
	font-weight: 500;
	color: #FFF;
	cursor: pointer;
	outline: none;
	-webkit-appearance: none;
	margin: 20px auto;
	max-width: 225px;
}

.sign button:hover, a.button:hover {
	text-decoration: none;
}

.sign input[type="submit"]:active, button:active, a.button:active {
	background-color: #01966F;
}

input[type="submit"].signSwitch {
    background-color: #137DB5;
}

input[type="submit"]:active.signSwitch {
    background-color: #016F96;
}

.sign .signPanel{
	border-style: none !important;
    background-color: #FFF !important;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15) !important;
    border-radius: 5px !important;
    padding: 10px !important;
}

.sign aside {
    margin: 10px 25px;
    line-height: 1.3em;
    font-size: 13px;
    color: #8798AB;
}

.sign .signupForm .ui-panel.ui-widget {
	overflow: auto;
}

.sign .signupForm {
    width: 80%;
    margin: 0 auto;
}

/* Media Queries */
@media screen and (max-width: 500px) {
	.sign .signupForm {
	    width: 100%;
	}
}

.signTitle {
    text-align: center;
    font-size: 30px !important;
    font-weight: bold;
    padding: 0px 10px;
}

/*
.sign div.ui-panel .ui-panel-content {
    padding: 0px 0px;
}
*/