/*
   New Perspectives on HTML and CSS, 7th Edition
   Tutorial 7
   Tutorial Case

   Survey Forms Style Sheet
   Author: Anthony Lopez
   Date:   11/16/2025

   Filename:         rb_forms.css

*/

/* Form Layout Styles */

form#survey {
	display: flex;
	flex-flow: row wrap;
}

form#survey > fieldset {
	background-color: rgb(241, 232, 181);
	border-radius: 20px;
	flex: 1 1 300px;
	font-size: 0.85em;
	padding: 10px;
	margin: 10px;
}

div.formRow {
	display: flex;
	flex-flow: row wrap;
	margin: 7px 0px;
}

div.formRow > * {
	flex: 1 1 150px;
}

/* Legend Styles */

legend {
	background-color: rgb(179, 20, 35);
	color: white;
	padding: 5px;
}

/* Text Area Styles */



/* Spinner Styles */



/* Form Button Styles */



/* Validation Styles */

