/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 17/04/2019, 10:39:21 PM
    Author     : Ingrosso
*/

input[type=text]:focus:not([readonly]) + label {
    color: orange !important;
}


input[type=text]:focus:not([readonly]) {
    border-bottom: 1px solid orange !important;
    box-shadow: 0 1px 0 0 orange !important; 
}

input[type=password]:focus:not([readonly]) + label {
    color: orange !important;
}


input[type=password]:focus:not([readonly]) {
    border-bottom: 1px solid orange !important;
    box-shadow: 0 1px 0 0 orange !important; 
}

