/* --------------------------------------------------------------
 
 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: normal;
}
/* Fieldsets */
fieldset {
    border: none;
}


/* Text fields */
input[type="text"], input[type="password"], textarea, select {
	border: 1px solid #a59f9a;
	background: #c2bbb5;
	margin: 0;
}
input[type="submit"] { cursor: pointer; background: #5b6f15; border: 1px solid #3a4c00; color: #FFF; }
/* Textareas */
textarea {
	min-width: 300px;
    height: 10em;
    border-width: 1px;
    background: inherit;
	color: inherit;
}

form { max-width: 99%; }

.fieldline td {padding-bottom: 5px;}