/* 
*	
*	CSSG Collections: Forms
*	designed and coded by Alen Grakalic (https://cssglobe.com)
*	brought to you by Templatica (https://templatica.com)
*
*/

/* form 2 */

#contact	{
	margin: 0;
	width: 300px; /* customize width, this form have fluid layout */
}

#contact fieldset	{
	margin:0;
	padding:0;
	border:none;	
	padding-bottom:1em;
	background: inherit;
}

#contact legend	{
	display:none;
}

#contact p	{
	margin: 10px 0 5px 20px;
}

#contact label	{
	display: block;
	margin-bottom: 2px;
}

#contact input, #contact textarea	{
	width:272px;
	padding:5px 3px;
	color:#fff;
	border: 1px solid #222;
	outline: none;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background-color: #000000;
	background:
		-webkit-gradient(
			linear,
			left top,
			left bottom,
			from(#000000),
			to(#111111)
		);
	background:
		-moz-linear-gradient(
			top,
			#000000,
			#111111
		);
}

#contact textarea	{
	height:125px;
	overflow: auto;
}

#contact #contact_btn	{
	width:280px;
	color: #FFFFFF;
	font-weight: bold;
	cursor: pointer;
	border: none;
	background-color: #39FB00;
	background:
		-webkit-gradient(
			linear,
			left top,
			left bottom,
			from(#39FB00),
			to(#336600)
		);
	background:
		-moz-linear-gradient(
			top,
			#39FB00,
			#336600
		);
}

/* // form 2 */