/*
		
	GwyddionGames Forms Style Sheet
	Author:	JP Dhabolt
	Date: 8/29/2015
	
	Filename:			forms.css
	Supporting Files:
	
*/

fieldset {
	border: 1px solid orange;
	margin: 20px 10px;
}

div {
	float: left;
	margin: 5px 7%;
	width: 35%;
}

/* Form Element Styles */

input[type="text"], input[type="email"] {
	background-color: orange;
	color: rgb(0, 100, 0);
	float: left;
	font-weight: bold;
	margin: 5px 1%;
	width: 17%;
}

input[type="email"] {
	margin-right: 4%;
}

select {
	background-color: orange;
	color: rgb(0, 100, 0);
	float: left;
	font-weight: bold;
	width: 95%;
}

input[name="favFeature"] {
	background-color: orange;
	color: rgb(0, 100, 0);
	float: left;
	font-weight: bold;
	width: 95%;
}

textarea {
	background-color: orange;
	color: rgb(0, 100, 0);
	float: left;
	font-weight: bold;
	height: 200px;
	margin: 10px 10%;
	width: 80%;
}


/* Label Styles */

.textLabel {
	float: left;
	margin: 5px 1%;
	width: 9%;
}

.textLabel:first-of-type {
	margin-left: 4%;
}

.selectLabel {
	float: left;
	margin: 5px;
	width: 80%;
}

.listLabel {
	float: left;
	margin: 5px;
	width: 80%;
}

#updates {
	clear: left;
	float: left;
	margin: 5px 10%;
	width: 80%;
}

.commentLabel {
	clear: left;
	float: left;
	margin: 5px 10%;
	width: 80%;
}

/* Placeholder Styles */

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: rgb(0, 100, 0);
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: rgb(0, 100, 0);
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: rgb(0, 100, 0);
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: rgb(0, 100, 0);
}

/* Button Styles */

.customButton {
	background-color: rgb(0, 100, 0);
	border: 3px solid orange;
	
	-moz-border-radius: 10px;
   -webkit-border-radius: 10px;
	border-radius:10px;
	
	color: orange;
	
	padding: 5px;
}