/***************************************************************************************************
 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: 0 0 0 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;
margin-bottom:10px;
}

/** 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-color:#04397a;
	color:#fff;
  border: none;
  padding: 10px;
  border-radius: 4px;
  transition: color 0.3s, background 0.3s;
  -webkit-transition: color 0.3s, background 0.3s;
  display:block;
  width:100%;
  margin-top:10px;
font-size:12pt;
font-family:'Libre Baskerville', serif;
}  

.formandu-button:hover {
    background-color:#3A5C93;
}

.formandu-button:active {
    background-color:#3A5C93;
}