1/* If input is not empty */
2input:not(:placeholder-shown) {
3 /* You need to add a placeholder to your fields. For example: <input "placeholder=" "/> */
4 border-color: green;
5}
6
7/* If input is empty */
8input:placeholder-shown {
9 border-color: red;
10}