/* label color */
.input-field label {
	color: #999;
}

/* label focus color */
.input-field input[type=text]:focus + label {
	color: #01579b;
}

/* label underline focus color */
.input-field input[type=text]:focus {
	border-bottom: 1px solid #01579b;
	box-shadow: 0 1px 0 0 #01579b;
}

/* valid color */
.input-field input[type=text].valid, .input-field input[type=password], .input-field input[type=password]:focus:not([readonly]) {
	border-bottom: 1px solid #01579b;
	box-shadow: 0 1px 0 0 #01579b;
}