/*
 * FORM CSS
 */

 html,
 body {
 	color: #666D77;
 	height: 100%;
 	font-family: 'Lato', sans-serif;
 	font-size: 15px;
 	line-height: 1.3em;
 }

 body,
 body * {
 	box-sizing: border-box;
 	outline: none;
 	position: relative;
 }

 body {
 	background-color: #F6F7FB;
 }

 p {
	 margin-bottom: 25px;
	 text-align: center;
 }

 /* The page */
 .page-table {
 	display: table;
 	padding: 30px 0;
    table-layout: fixed;
    width: 100%;
 }

 .page-tableCell {
 	display: table-cell;
 	height: 100%;
    vertical-align: middle;
    width: 100%;
 }

 .container {
 	margin: auto;
 	max-width: 460px;
 	padding: 30px 15px;
 }

 .logo {
 	display: block;
 	margin: 0 auto 25px auto;
 	max-width: 250px;
 	width: 100%;
 }
 
 /* The form */
form {
	background-color: #FFFFFF;
	border: 1px solid #E7E9EE;
	border-bottom-width: 2px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
	display: block;
	padding: 30px;
	width: 100%;
}

form .single_input {
 	margin-bottom: 20px;
 	width: 100%;
}

form .single_input:last-child {
	margin-bottom: 0;
}

form .single_input.submit_container {
	margin-top: 5px;
}

form .single_input label {
	color: inherit;
	display: block;
	font-size: 1em;
	margin-bottom: 5px;
	width: 100%;
}

form .single_input input {
	background-color: #FFFFFF;
	border: 2px solid #E7E9EE;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	color: #444A53;
	display: block;
	font-size: 1em;
	line-height: 40px;
	padding: 0 15px 0 55px;
	width: 100%;
}

form .single_input i {
	background-color: #E7E9EE;
	bottom: 2px;
	color: #ABB2BC;
	font-size: 1.3em;
	left: 2px;
	line-height: 40px;
	position: absolute;
	text-align: center;
	width: 40px;
	z-index: 1;
}

.tooltip {
	background-color: #5EACD6;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	bottom: 110%;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
	color: #FFFFFF;
	left: 0;
	line-height: 1.3em;
	padding: 10px 15px;
	position: absolute;
	z-index: 2;
}

.tooltip::after {
	bottom: -8px;
	content: "";
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #5EACD6 transparent transparent transparent;
	height: 0;
	left: 10px;
	position: absolute;
	width: 0;
}

form .single_input input + .tooltip {
	display: none;
}

form .single_input input:focus + .tooltip {
	display: block;
}

form .single_input button {
	background-color: #4CB271;
	border: 2px solid #4CB271;
	border-bottom-color: #3E9050;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	color: #FFFFFF;
	cursor: pointer;
	font-size: 1em;
	line-height: 40px;
	padding: 0 20px;
	text-transform: uppercase;
	width: 100%;
}
