.custom_input_group {
	  position: relative;
	}

	input.custom_input {
	  background: none;
	  color: #c6c6c6;
	  font-size: 18px;
	  padding: 10px 10px 10px 5px;
	  display: block;
	  width: 100%;
	  border: none;
	  border-radius: 0;
	  border-bottom: 1px solid #c6c6c6;
	}
	input.custom_input:focus{
	  outline: none;
	}
	input.custom_input:focus ~ label.input_label, input.custom_input:valid ~ label.input_label,
	{
	  top: -14px;
	  font-size: 12px;
	  color: #2196F3;
	}
	input.custom_input:focus ~ .input_bar:before
	{
	  width: 100%;
	}
	input[type=password] {
	  letter-spacing: 0.3em;
	}
	label.input_label {
	  color: #c6c6c6;
	  font-size: 16px;
	  font-weight: normal;
	  position: absolute;
	  pointer-events: none;
	  left: 5px;
	  top: 10px;
	  transition: 300ms ease all;
	}
	.input_bar {
	  position: relative;
	  display: block;
	  width: 100%;
	}
	.input_bar:before {
	  content: "";
	  height: 2px;
	  width: 0;
	  bottom: 0px;
	  position: absolute;
	  background: #2196F3;
	  transition: 300ms ease all;
	  left: 0%;
	}