.customForm label {
  font-weight: normal;
}
.customForm input[type="checkbox"] {
  margin: 0 1rem 0 0;
  transform: translateY(1px);
}
.customForm textarea {
  width: 100%;
  height: 8rem;
  border: 0;
  box-shadow: inset 2px 2px 5px #d9d9d9;
  padding: 12px;
  resize: vertical;
}
.customForm select {
  background-color: #5bc5ec;
  color: white;
}
.customForm select option {
  background-color: #fff;
  color: initial;
}
.customForm input[type="text"],
.customForm select {
  max-width: unset;
}
.customForm .col-xs-12 {
  margin-bottom: 2rem;
}
.customForm .col-xs-12 .requiredLabel {
  margin-left: 7rem;
}
.customForm .col-xs-12:last-child {
  margin-bottom: 0;
}
.message {
  display: block;
  padding: 10px;
  color: white;
  margin-bottom: 20px;
}
.message.success {
  background-color: green;
}
.message.error {
  background-color: red;
}
.message a {
  color: white;
  text-decoration: underline;
}
