/* Fix the label not being next to the checkbox */
.checkboxLabel {
  display: inline;
}

/* Format the info input labels to work well on small screens */
@media only screen and (max-width: 768px) {
  .infoLabel {
    display: block;
    text-align: left;
  }
  .infoInput {
    width: 300px;
  }
  .infoTextBox {
    width: 300px;
    height: 75px;
  }
}

/* Format the info input labels to work well on larger screens */
@media only screen and (min-width: 769px) {
  .infoLabel {
    display: inline-block;
    text-align: right;
    min-width: 200px;
  }
  .infoInput {
    width: 300px;
  }
  .infoTextBox {
    width: 300px;
    height: 75px;
    margin-bottom: 3px;
  }
}