/*
   New Perspectives on HTML
   Module 6 Homework

   Tri-County Alarms Form Styles
   Author: Kaylie Bowen
   Date:   3/20/16

   Filename:         form.css
   Supporting Files: none

*/

/* Field set styles */

	fieldset {
	   background-color: green;
	   border: 1px solid black;
	   float: right;
	   margin: 10px 0px 10px 2.5%;
	   width: 60%;
	   position: relative;
	}

	legend {
	   color: white;
	   padding: 4px 2px;
	   text-indent: 5px;
	   width: 25%;
	}

/* Select styles */

	select {
	   background-color: white;
	   border: 1px solid black;
	   float: left;
	   margin: 10px 0px 10px 2.5%;
	   width: 60%;
	}

/* Text area styles */

	textarea {
	   display: black;
	   font-size: 0.9em;
	   border: 1px solid black;
	   float: left;
	   height: 150px;
	   margin: 10px 0px;
	   width: 60%;
	}


/* Label styles */
	
	label {
	   clear: left;
	   display: black;
	   float: left;
	   font-size: 0.9em;
	   margin: 7px 4% 7px 5px;
	   width: 40%;
	}

/* Input control styles */

	input {
	   display: block;
	   float: left;
	   font-size: 0.9em;
	   margin: 7px 0px;
	   width: 50%;
	}

/* Button styles */

	form p {
	   text-align: center;
	}
	
	input[type="submit"], input[type="reset"] {
	   display: run-in;
	   float: left;
	   height: 40px;
	   margin-left: 0px;
	   width: 200px;
	}

