.superpack-contact {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: left;
}
.superpack-contact .field {
  position: relative;
}
.superpack-contact input {
  resize: none;
  width: 100%;
  outline: none;
  appearance: none;
}
.superpack-contact input[type="submit"] {
  width: 100%;
  max-width: 100%;
  padding: 0;
  cursor: pointer;
  appearance: none;
  outline: none;
}
.superpack-contact textarea {
  resize: none;
  width: 100%;
  max-width: 100%;
  outline: none;
  appearance: none;
}
.superpack-contact label {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  cursor: pointer;
  position: relative;
  margin-left: 30px;
  display: block;
  max-width: calc(100% - 30px);
  width: auto;
}
.superpack-contact input[type="checkbox"] {
  display: none;
}
.superpack-contact .checkbox:before {
  content: "";
  vertical-align: middle;
  text-align: center;
  line-height: 20px;
  cursor: pointer;
  height: 20px;
  width: 20px;
  font-size: 10px;
  position: absolute;
  left: -30px;
  top: 0;
  display: inline-block;
}
.superpack-contact input[type="checkbox"]:checked + .checkbox:before {
  content: "\2714\FE0E";
  cursor: pointer;
}
.superpack-contact input[type="submit"].disabled, .superpack-contact input[type="submit"].success, .superpack-contact input[type="submit"].error {
  cursor: default;
}