select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="text"],
textarea,
select,
button,
.button,
input[type="submit"],
.addAction {
  border-radius: 3px;
  border: 0;
  padding: 7px;
  box-sizing: border-box;
}

input[type="text"],
textarea {
  width: 100%;
  background: #222;
  color: #fff;
}

button,
.button,
.button:visited,
input[type="submit"],
select,
.addAction {
  background: #555;
  color: #fff;
  display: block;
  margin: 0;
  text-align: center;
  width: 100%;
}

button:hover,
.button:hover,
input[type="submit"]:hover {
  background: #666;
  color: #fff;
  cursor: pointer;
}

.secondary,
button.secondary,
.button.secondary,
.button.secondary:visited,
input[type="submit"].secondary {
  background-color: transparent;
  border: 2px solid #666;
}

textarea {
  margin-bottom: 14px;
}

form label {
  display: block;
  padding: 6px 0;
  cursor: pointer;
}

form label:hover {
  background-color: #333;
}

label > input[type="radio"] {
  display: inline-block;
  margin-right: 10px;
}
