@charset "utf-8";


/*

Build Your Web Form Assignment: CSS Stylesheet 

Stylesheet for Web Form For Pride's Daycare Home Page

Author: Angela Cary
Date: 04/27/2026


Filename: styleForm.CSS


*/




/* Form Styles */


h1 {
	font-family: Geneva, Verdana, sans-serif;
	margin-left: 35px;
	
}


fieldset {
	display: box;
	width: auto;
	height:auto;
	border-radius: 10px;
	padding: 5px;
	background-color: rgb(207, 253, 188);
	color: black;
	margin-top: 50px;
	

}



/* Legend */

legend {
	font-family: Time New Roman, sans-serif;
	font-size: 2em;
	margin-left: 35px;
	
}



/* Input Fields Styles */

label {
	display: box;
	margin: 35px 0px 0px 2px;
	font-family: Times New Roman, sans-serif;
	font-size: 1.25em;
	
}



input {
	width: 400px;
	height: 20px;
	margin-top: 30px;
	margin-bottom: 30px;
	
}






/* Button Styles */

div#buttons {
	float: left;
	text-align: center;
	width: 100%;
	
}

#buttons::after {
	display: table;
	content: "";
	clear: both;
}


input[type="submit"] {
	display: box;
	width: 150px;
	height: 45px;
	font-family: Arial Black;
	font-size: 1.2em;
	margin-right: 75px;
	margin-left: 150px;
	float: left;
	background-color: light;
	box-shadow: 1px 1px;
	
}

input[type="reset"] {
	display: box;
	width: 150px;
	height: 45px;
	font-family: Arial Black;
	font-size: 1.2em;
	float: left;
	background-color: light;
	box-shadow: 1px 1px;
}



input[type="checkbox"] {
	display: box;
	width: 25px;
	font-size: 1em;
	float: left;
	margin: 0px 0px 0px 15px;
}
	


/* Validation Styles */

input:focus, select:focus, textarea:focus {
	background-color: rgb(253, 251, 212);
}





