.form {

}

.form fieldset{
  width: 250px;
  margin-bottom: 1em;
  border: 1px solid #888;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  padding: 1em;
}

.form legend {
  font-weight: bold;
  border: 1px solid #888;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  padding: .5em;
  background-color: #ccc;
}

.form label {
  margin-top: .33em;
  display: block;
  font-weight:bold;
}

.form label.required {
  color: #c00;
  font-weight:bold;
}

.form input {
  display: block;
  width: 250px;
}

.form input.inline{
  display: inline;
}

.form select {
  display: block;
}

.form textarea {
  height: 80px;
  width: 250px;
  font-size: 90%;
}

.form .button {
  display: inline;
  width: auto;
}

.form input.required, .form textarea.required, .form select.required {
  border: 1px dotted red;
  background-color: #eee;
}
