/* -------------------------------------------------------------- 
   
   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; display:block;margin:5px 0 0 0;color:#147fe7;}
fieldset    { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
legend      { font-weight: bold; font-size:1.2em; }


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

input, input.text, input.title,
textarea, select {
	margin:5px 0;
	border:none;
	border:1px solid #ddd;
	border-left:1px solid #ddd;
	background-color:#eee;
	height:16px;
	font-size:14px;
	font-weight:normal;
	color:#333;
	font-family:Arial, Helvetica, sans-serif;
}

input:focus, input.title:focus,
textarea:focus, select:focus {
	border-top:1px solid #a3a3a3;
	border-left:1px solid #a3a3a3;
	border-bottom:1px solid #fff;
	border-right:1px solid #fff;
}

input.text, 
input   { width: 400px; padding:7px; }

input.check{ width: 80px;background:none;border:none; }
input.submit{ 
	width: 100px; 
	padding:5px; 
	height:30px;
	border-top:none;
	border-left:none; 
	border-bottom:1px solid #ccc;
	border-right:1px solid #ccc;
	cursor:default;
	color:#147fe7;
	font-size:12px;
	font-weight:bold;
	display:block;
}
input.submit:hover{ 
	border-top:1px solid #999;
	border-left:1px solid #999; 
	border-bottom:none;
	border-right:none;
}

select, option{
	width: 310px;
	height:28px;
	padding:4px;
}
option{
	padding:6px 0 0 4px;
}
input.title   { font-size:1.5em; }
textarea      { width: 400px; height: 200px; padding:5px; }



/* Success, notice and error boxes
-------------------------------------------------------------- */

.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }

.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.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; }
