/* -------------------------------------------------------------- 
   
   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       {
	font-weight: bold;
	text-align: right;
	display: block;
	vertical-align: middle;
	padding-right: 5px;
	padding-top: 1px;
}
fieldset    {
	margin: 0 0 1.25em;
	padding-bottom: 1.25em;
	border-bottom: 1px solid #ccc;
}
legend      {
	font-weight: bold;
	font-size:1.2em;
	margin-bottom: 1.25em;
}


/* Form fields
-------------------------------------------------------------- */

input.text, input.title,
textarea, select {
	border:1px solid #bbb;
}

input.text:focus, input.title:focus,
textarea:focus, select:focus {
  border:1px solid #666;
}

input.text, 
input.title   {
	height: 20px;
}
input.title   { font-size:1.5em; }
textarea      {
	height: 100px;
	padding:5px;
	width: 98%;
}
.required {
	color: #FF0000;
}
.notice,/* Success, notice and error boxes
-------------------------------------------------------------- */
.success 
    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }
.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.notice a   { color: #514721; }
.success a  { color: #264409; }

