/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 7
   Case Problem 2

   Spice Bowl Payment Form Validation Style Sheet
   Author: Landin Jones
   Date: 11/12/2023   

   Filename: sb_validate.css

*/


/* Validation Styles */

input:focus:not([type='radio']) {
	background-color: rgb(255, 218, 165);
}

input:focus:valid:not([type='radio']) {
	background-color: rgb(215, 255, 215);
}

input:focus:invalid:not([type='radio']) {
	background-color: rgb(255, 245, 215);
}

