/* --------------------------------------------------------------

   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
   * For inline forms, use .inline (even when using columns)

-------------------------------------------------------------- */

label       { font-weight: bold; }
fieldset    { margin: 0; padding: 0; border: none; }
legend      { font-weight: bold; font-size: 1.2em; }


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

input, textarea, select {
	padding: 5px;
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #fff;
	border: 1px solid #bbb; }

input:focus, textarea:focus, select:focus {
	border-color: #666;
	outline: none; }

textarea { width: 390px; height: 250px; }

input.checkbox, input.radio { position: relative; top: .25em; }

form.inline { line-height: 3; }
form.inline p { margin-bottom: 0; }


/* Success, notice and error boxes
-------------------------------------------------------------- */
.error,
.notice,
.success    {  }

.error      { background: #FBE3E4; color: #000000; border-color: #FBC2C4; background-position: no-repeat bottom left; }
.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }
