/* General Styles */

html, body {
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #2e2f30;
	line-height: normal;
	font-variant: normal;
	text-decoration: none;
	height: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
}

body {
	display: flex;
	align-items: center;
	justify-content: center;

	/* safari < 9 */
	display: -webkit-flex;
	-webkit-align-items: center;
	-webkit-justify-content: center;

	background: rgb(255, 255, 255); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(193, 193, 193, 1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(193, 193, 193, 1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(193, 193, 193, 1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(193, 193, 193, 1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(193, 193, 193, 1) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(193, 193, 193, 1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#c1c1c1', GradientType=0); /* IE6-9 */
}

input, button {
	width: 250px;
	border: 1px solid #d0d0d0;
	border-radius: 3px;
	height: 25px;
	font-size: 18px;
	padding-left: 5px;
	padding-right: 5px;
}

input {
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	-ms-transition: all 0.15s ease-in-out;
	-o-transition: all 0.15s ease-in-out;
	outline: none;
}

input:focus {
	box-shadow: 0 0 5px rgba(81, 203, 238, 1);
	border: 1px solid rgba(81, 203, 238, 1);
}

input[type=submit] {
	margin-top: 20px;
	margin-bottom: 20px;
	height: 29px;
	width: 260px;
	background: rgb(26, 186, 226);
	color: #FFFFFF;
	border: 1px solid rgb(25, 182, 225);
	cursor: pointer;
}

input[type=submit]:hover {
	background: rgb(17, 117, 198);
	border: none;
}

#container {
	flex: 0 1 auto;
	-webkit-flex: 0 1 auto;
	min-width: 323px;
	padding: 20px 10px;
	background: rgba(255, 255, 255, 0.69);
	border-radius: 20px;
	border: 1px solid rgb(184, 180, 180);
	box-shadow: 0 3px 8px rgb(185, 183, 183);
}

#container-logo {
	background: url('../image/workwave-logo.svg') no-repeat center center;
	width: 100%;
	height: 93px;
	margin-bottom: 25px;
}

/* Footer Styles */

.panel-footer {
	margin: 10px 0 5px 0;
	border: 0;
}

.page-footer {
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #337ab7;
	position: fixed;
	bottom: 0;
	padding-bottom: 30px;
	text-align: center;
	left: 0;
	right: 0;
	display: block;
}
.footer-logo {
	width: 225px;
	margin-bottom: 15px;
}
.footer-second-row {
	font-size: 12px;
}

@media screen and (max-height: 660px) {
	.page-footer {
		position: relative;
		margin-top: 20px;
		font-size: 12px;
	}
	.footer-logo {
		margin-bottom: 10px;
	}
	.footer-second-row {
		font-size: 10px;
	}
}

/* Content Styles */

.form_element {
	margin-bottom: 10px;
}
.form_element > label > span{
	margin-right: 12px;
}

.form_element > ul { /* Zend-generated error message */
	color: #cb451e;
	list-style-type: none;
	padding: 0;
	margin-top: 5px;
}
.form_element > label > span {
	display: block;
}
.form_note {
	margin-bottom: 0;
	font-style: italic;
	
}