div.form.label {
  font-weight: bold;
  margin-top: 16px;
}
div.form.label:first-child {
  margin-top: 0;
}
div.form.label.required:after {
  content: "*";
  margin-left: 4px;
  color: #900;
}
div.form.separator {
  margin-top: 16px;
  border-bottom: 2px solid #cacaca;
}
button.form {
  background-color: #fff;
  color: #515151;
  border: 1.5px solid #515151;
  padding: 17px 30px;
  line-height: 1;
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
}
button.form:hover {
  border: 1.5px solid #ffd000;
  color: #ffd000;
}
table.form {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
}
table.form th {
  text-align: left;
  padding-right: 16px;
}
table.form th:last-child {
  padding-right: 4px;
}
table.form td {
  background-color: #fff;
  padding: 8px 8px 4px 4px;
  border: 1px solid #ccc;
}
table.form td:last-child {
  padding-right: 4px;
}
table.form.borderless td {
  border: none;
  padding-left: 0px;
}
select.form {
  background-color: #fff;
}
select.form[disabled] {
  opacity: 0.4;
}
@media only screen and (max-width: 800px) {
  table.form {
    margin-top: 0px;
  }
  table.form td:first-child {
    border-left: none;
  }
  table.form td:last-child {
    border-right: none;
  }
}
