/* 

  * 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:#fff url('../img/loader.gif') 0 0 no-repeat; }


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

input, textarea { 
    width:98%;
    padding:6px 12px; 
    border-radius:6px; 
    border:1px solid #ccc; 
}

button { margin-top:18px; }

#messageText { min-height:200px; }

