.has-float-label label, .has-float-label > span {
	position: absolute;
	left: 0;
	top: 0;
    cursor: text;
    font-size: 75%;
    opacity: 1;
    -webkit-transition: all .2s;
            transition: all .2s;
    top: -1em;
    left: 12px;
    z-index: 3;
    line-height: 1;
	padding: 0 1px;
	font-size: 16px;
	color: #5264AE;
	background: none;
}
.has-float-label .form-control:placeholder-shown:not(:focus) + * {
	font-size: 15px;
	opacity: .9;
	top: .8em;
	font-weight: normal;
	color: #000;
}


/* FROM BOOTSTRAP */
.form-control {
  height: 35px;
  padding: 6px 12px;
  font-size: 14px;
  border: none;
  border-bottom: 2px solid #00CCCC;
  border-radius: 0;
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, .0);
  box-shadow: inset 0 0 0 rgba(0, 0, 0, .0);
  background-color: transparent;
  /*
  line-height: 1.42857143;
  color: #555;
  
  background-image: none;
  
  border-radius: 4px;
  
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  */
}
.form-control:focus {
  border-color: orange;
  outline: 0;
  -webkit-box-shadow: inset 0 0 0 rgba(0,0,0,.075), 0 0 0 rgba(102, 175, 233, .6);
          box-shadow: inset 0 0 0 rgba(0,0,0,.075), 0 0 0 rgba(102, 175, 233, .6);
}

/* FROM BOOTSTRAP */


.has-float-label {
	display: block;
	position: relative;
	background-color: transparent;
 }

.has-float-label label::after, .has-float-label > span::after {
	content: " ";
	display: block;
	position: absolute;
	/*background: white;*/
	height: 2px;
	top: 50%;
	left: -.2em;
	right: -.2em;
	z-index: -1;

}
.has-float-label .form-control::-webkit-input-placeholder {
	opacity: 1;
	-webkit-transition: all .2s;
            transition: all .2s;
}

.has-float-label .form-control::-moz-placeholder {
	opacity: 1;
	transition: all .2s;
}
.has-float-label .form-control:-ms-input-placeholder {
	opacity: 1;
	transition: all .2s;

}
.has-float-label .form-control::placeholder {
	opacity: 1;
	-webkit-transition: all .2s;
            transition: all .2s;
}
.has-float-label .form-control:placeholder-shown:not(:focus)::-webkit-input-placeholder {
	opacity: 0;
}
.has-float-label .form-control:placeholder-shown:not(:focus)::-moz-placeholder {
	opacity: 0;
}
.has-float-label .form-control:placeholder-shown:not(:focus):-ms-input-placeholder {
	opacity: 0;
}
.has-float-label .form-control:placeholder-shown:not(:focus)::placeholder {
	opacity: 0;color: blue;
}



.input-group .has-float-label {
  display: table-cell; }
  .input-group .has-float-label .form-control {
    border-radius: 4px; }
  .input-group .has-float-label:not(:last-child) .form-control {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0; }
  .input-group .has-float-label:not(:first-child) .form-control {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    margin-left: -1px; }