/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 7
   Case Problem 2

   Spice Bowl Payment Form Validation Style Sheet
   Author: Kaden Smart
   Date:   11-17-2025

   Filename: sb_validate.css

*/


/* Validation Styles */

input:not([type='radio']) {
	background-color: rgb(255, 218, 165);
}

input:not([type='radio']):focus:valid {
	background: rgb(215, 215, 215) url("sb_valid.png") no-repeat right;
}

input:not([type='radio']):focus:invalid {
	background: rgb(255, 245, 215) url("sb_invalid.png") no-repeat right;
}