﻿@charset "utf-8";

/*
	New Perspectives on HTML5 and CSS3, 8th Edition
	Chapter 7
	Coding Challenge 3

	Author: Chris LaFleur
	Date: 11/6/23
*/


input:focus, select:focus{
	background-color: yellow;
}

input:invalid{
	color: red;
	border-color: red;
	box-shadow: 0px 0px 5px red;
}