/* 

  * form.css
  * styles for custom contact validation system
  * by @m2robinson

*/

/* IMPORTANT hide the honeypot from human users */
#uid { display:none; }  

/* styles for error/success/processing messages */
#formMessages	{ width:100%; word-wrap:break-word; margin-top:18px; }
.formError		{ padding:12px; background-color:#fcc; color:#f00; }
.formSuccess	{ padding:12px; background-color:#cfc; color:#363; }
.formProcessing { height:100px; width:100%; background:transparent url('../img/loader.gif') 0 0 no-repeat; }


/* optional styling */
label { 
    font-weight:700; 
    clear:both; 
    display:block;
    padding-top: 18px;
}

button { margin-top:18px; }
