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

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;}



/* Fieldsets */
fieldset { padding:1.0em; margin: 0 0 0 0; border: 1px solid #ccc; }
legend { font-weight: bold; font-size:1.2em; }

/* Text fields */
input.text, input.title { width: 180px; margin:0.5em 0.5em 0.5em 0; }
input.text, input.title, input.textshort, input.textmedium { border:1px solid #bbb; background:#f6f6f6; padding:3px; }
input.text:focus,
input.title:focus, input.textshort:focus, input.textmedium:focus { border:1px solid #999; background:#fff; }
input.title { font-size:1.2em; font-weight: bold;}

/* Specific fields*/
input.textshort{ width: 50px; margin:0.5em 0.5em 0.5em 0; }
input.textmedium{ width: 75px; margin:0.5em 0.5em 0.5em 0; }
#name {margin-left:7px; width: 200px;}
#suburb {margin-left:5px; width: 200px;}
#state {margin-left:20px;}
#country {width: 78px;}
#email {margin-left:16px; width: 200px;}
#email_msg{margin-left:10px; width:154px;}

#terms_button p{ margin-bottom: 0.9em; font-weight:bold; text-decoration:underline; color: #808080; cursor:pointer; margin-top:0.9em;}
#termsandconditions { background: #f6f6f6; color: #000000; border-color: #808080; margin-top:10px;}
#termsandconditions p{ margin-bottom: 0.9em}

/* Textareas */
textarea { width: 150px; height: 250px; margin:0.5em 0.5em 0.5em 0; }
textarea { border:1px solid #bbb; background:#eee; padding:5px; }
textarea:focus { border:1px solid #999; background:#fff; }

/* Select fields */
select { border:1px solid #ccc; background:#f6f6f6; width:200px; }
select:focus { border:1px solid #999; background:#fff; }


/* Success, error & notice boxes for messages and errors. */
.error,
.notice, 
.success { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }
.error { background: #FBE3E4; color: #D12F19; border-color: #FBC2C4;padding:2px;font-weight:normal;margin-left:54px; }
.notice { background: #FFF6BF; color: #817134; border-color: #FFD324; }
.success { background: #E6EFC2; color: #529214; border-color: #C6D880; }


.error a { color: #D12F19; }
.notice a { color: #817134; }
.success a { color: #529214; }