/*
      Author: Kevin Christopher
      Date:   29 July 2017 
*/
fieldset {
	border: 0px;
	margin: 5px;
}

legend {
	background-color: #6B4423;
	color: black;
	margin: 10px 10px 0px 0px;
	text-indent: 20px;
	width: 100%;
	border-radius: 10px;
}

label {
	clear: left;
	display: block;
	float: left;
	font-size: 0.8em;
	text-align: right;
	margin: 2px 5px;
	width: 25%;
}

input {
	display: block;
	float: left;
	font-size: 0.9em;
	width: 60%;
	margin: 2px 0px;
}

select {
	display: block;
	float: left;
	font-size: 0.9em;
	margin: 2px;
}

textarea {
	display: block;
	float: left;
	font-size: 0.9em;
	height: 75px;
	width: 60%;
}

fieldset.optionGroup {
	margin-left: 25%;
}

fieldset.optionGroup label {
	display: inline;
	float: none;
	width: 100px;
}

fieldset.optionGroup input {
	display: inline;
	float: none;
	margin: 0px;
	width: 20px;
}

input#csc {
	width: 50px;
}

input[type="submit"] {
	background-color: #6B4423;
	float: none;
	width: 150px;
	height: 30px;
	margin: 10px auto;
	border-radius: 15px;
}
 
/* Submit button hover color*/
input:hover[type="submit"]{
	background-color: #ea7909;
}

/* Validation Styles */
input:focus, select:focus, textarea:focus {
	background-color: rgb(255, 218, 165);
}

input:focus:invalid {
	background-color: rgb(255, 245, 215);
	background: url(stop.png) bottom right no-repeat;
}

input:focus:valid {
	background-color: rgb(215, 255, 215);
	background: url(go.png) bottom right no-repeat;
}

h1 {
	text-align: center;
}