

/* Contact Form */

DIV#contactForm {
  padding: 0;
  margin 0;
  }

DIV#contactForm DIV.row {
  clear: both;
  display: inline-block;
  width: 100%;
  padding: 0;
  margin: 0;
  }
  
/* LEFT/LABELS Column */
DIV#contactForm DIV.labels {
  float: left;
  width: 130px;
  }

/* MIDDLE Column */
DIV#contactForm DIV.middle {
  float: left;
  }
DIV#contactForm INPUT {
  padding: 2px;
  margin: 1px 3px;
  }  

/* ERROR Column */
DIV#contactForm DIV.error {
  float: left;
  /* Font */
  color: red;
  font-weight: bold;
  }
  

/* Verification Code */
DIV#verif {
  clear: both;
  }
 
/* Submit button */  
DIV#contactForm DIV.submit {
  clear: both;
  width: 100%;
  text-align: center;
  }  
  
/* Success Sent */
P.contactSuccess {
  text-align: center;
  font-size: 26px;
  color: red;
  font-weight: bold;
  }  
  
