/***************************************************************************************************
 This file contains the styles for formandu form controls. This generic style sheet is used for
 themes that don't provide a controls stylesheet.
***************************************************************************************************/

.formandu-text, .formandu-textarea, .formandu-dropdown, .formandu-static-text, .formandu-listbox {
  border: 1px solid #666;
  background: #fff;
  color: #333;
  padding: 4px;
  margin: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  width: 100%;  
}

/** Text area controls */
.formandu-textarea {
  height: 200px;
}

/** Label controls */
.formandu-label {
  margin: 8px 0 0 0;
  padding: 4px;
  display: block;
}

/** Label controls representing values that can't be changed */
.formandu-static-text {
  color: #666;
}

/** Buttons */
.formandu-button {
  background: #9d538e;
  border: none;
  padding: 10px;
  border-radius: 4px;
  color: #fff;
  transition: all 0.2s ease-in;
  display:block;
  margin:10px 0px;
}  

.formandu-button:hover {
  background: #b783ad;
  cursor:pointer;
}

/* Captcha */

#captcha{
	padding:10px 0px;
	vertical-align:middle;
}

