.floatlabel .fl_wrap {
	width: 500px;
	height: 46px;
	margin:12px auto;
	display:block;
	position:relative;
	-webkit-box-sizing:border-box;
	 -moz-box-sizing:border-box;
				box-sizing:border-box;
}
.floatlabel label {
	top: 15px;
	left: 5px;
	position:absolute;
	cursor: text;
	z-index:3;
	-webkit-transition: all .05s linear;
		 -moz-transition: all .05s linear;
				 -transition: all .05s linear;
}

.floatlabel input[type='password'],
.floatlabel input[type='text'],
.floatlabel input[type='email'],
.floatlabel input[type='tel'] {
	background: rgb(237, 237, 237);
	border:none;
	border-bottom: 1px solid #C1C1C1;
	border-radius: 0;
	font-size: 16px;
	line-height: 22px;
	padding: 20px 0 0 5px;
	position:absolute;
	top:0;left:0;right:0;bottom:0;
	width: 100%;
	z-index:2;
	border-radius: 4px;
}

.floatlabel input[type='submit'] {
	background:none;
	border-radius: 4px;
	border: 1px dotted #585858;
	color: #585858;
	font-size: 18px;
	padding: 5px 25px;
	display: block;
	margin: auto;
}
.floatlabel input[type='submit']:hover {
	cursor:pointer;
	background:#585858;
	color: #fff;
}
.floatlabel input[type='submit']:focus {
	outline:none;
	border: 1px solid #585858;
}


.floatlabel .fl_wrap.focused label,
.floatlabel .fl_wrap.populated label {top: 0; font-size: 12px; color: #555;
}
.floatlabel .fl_wrap.focused label {color: #585858;}