/* -------------------------------------------------------------- 
   
   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms
   
   Usage:
   * For text fields, use class .title or .text
   
-------------------------------------------------------------- */

label       { }
form { margin:0; }
fieldset { border:0px; padding:0; }
legend      { font-weight: bold; font-size:1.2em; }


/* Form fields
-------------------------------------------------------------- */

.contact, .contactTextarea {
	background:#FFF;
	border:1px solid #90BD20;
	width:250px;
	font-size:10px;
	font-family:Arial, Helvetica, sans-serif;
	color:#807F84;
	padding-left: 3px;
	margin-bottom:5px;
	display:block;
}
.contactTextarea {
	width:354px;
	height:125px;
	font-weight:bold;
	overflow:auto;
}



/* Success, notice and error boxes
-------------------------------------------------------------- */

.hinweis, .warnbox {
	border:1px solid #d83f3f;
	background:#f59c9c;
	color:#FFFFFF;
	width:350px;
}
.dankebox {
	border:1px solid #4a6c3a;
	background:#caf2b8;
	padding:8px 8px 0 8px;
	color:#516117;
	width:342px;
}
