/* 

  * form.css
  * styles for forms & validation systems
  * by mmrobinson/Fathead Design

*/

/* IMPORTANT hide the honeypot from human users */
#uid    { display:none; }  
#userID { display:none; } /* alternet honeypot id used in some forms */ 
.uid { display:none; } /* alternet honeypot id used in Perch forms */ 

.formContainer {
    width: 90%;
    max-width: 600px;
    background-color: #fff;
    padding: 24px;
    margin: 36px auto;
}

/* #reserveForm    { padding:24px; } */
.formCopy       { padding-bottom:18px; }
#formMessages	{ display:inline-block; width:100%; word-wrap:break-word; }
.formError		{ padding:12px; background-color:#fccfcc; color:#c00c00; }
.formSuccess	{ padding:12px; background-color: #ccffcc; color: #336633; }
.formProcessing { height:100px; width:100%; background:transparent url('../img/loader.gif') 0 0 no-repeat; }

