

input:not([type="radio"]):focus {
    background-color: rgb(255, 255, 255);
  }
  
  input:not([type="text"]):focus:valid {
    background-color: rgb(157, 255, 132);
    
  }
  
  input:not([type="text"]):focus:invalid {
    background-color: rgb(255, 140, 140);
  }