/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
*:focus {
  outline: none;
}
.control {
  width: 100%;
  border: 1px solid #ddd;
  color: #777;
  line-height: 20px;
  height: 32px;
  padding: 6px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.control:focus,
.control:active {
  -webkit-box-shadow: 0 0 4px #78bdea;
  -moz-box-shadow: 0 0 4px #78bdea;
  box-shadow: 0 0 4px #78bdea;
  color: black;
  border-color: #aaa;
}
textarea.control {
  height: 120px;
}
.label {
  font-weight: 600;
  line-height: 24px;
}
.label span.required {
  color: #43a3e2;
}
.control-group {
  margin: 5px 0;
}
