    .form {
      margin: 10px 0;
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      border-radius: 0px;
      font-family: 'Poppins', sans-serif;
    }

    .shadow {
      padding-left: 10px;
      background: none repeat scroll 0 0 rgba(255, 255, 255, 0.1);
    }

    label.form {
      padding-right: 5px;
    }

    input.form[type="text"],
    textarea.form,
    select {
      border: 1px solid rgba(0, 0, 0, .4);
      color: #686868;
      margin-bottom: 0.7em;
      font-size: 1.15rem;
    }

    input.form[type="text"] {
      width: 97%;
      float: left;
      line-height: 4;
      padding-left: 20px;
    }

    textarea.form {
      width: 97%;
      float: left;
      line-height: 2;
      padding-left: 20px;
    }

    .form select {
      width: 97%;
      float: left;
      line-height: 4;
      background-color: #fff;
      padding: 15px 5px 15px 20px;
      font-size: 1.15rem;
      color: #686868
    }

    .form button {
      border-radius: 5px;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      padding: 12px 57px;
      font-size: 15px;
      color: #fff;
      background-color: #f36f21;
      border: 0 none;
      cursor: pointer;
      margin-top: 1em;
    }

    .form button:hover {
      background-color: #999;
      color: #fff;
    }

    .clear {
      clear: both;
    }

    input.form:focus-visible,
    textarea.form:focus-visible {
      outline: 1px solid #ccc;
    }

    input.form::placeholder,
    textarea.form::placeholder {
      color: #000;
    }

    label.error {
      margin-left: .01em;
      margin-right: 1em;
      margin-top: 0;
      margin-bottom: 0;
      color: #ff7162;
      font-size: 1.2rem;
      font-weight: normal;
    }

    label.why {
      display: inline;
    }

    input[type=checkbox] {
      -moz-appearance: none;
      -webkit-appearance: none;
      -o-appearance: none;
      outline: none;
      content: none;
    }

    input[type=checkbox]:before {
      font-family: "FontAwesome";
      content: "\f00c";
      font-size: 16px;
      color: transparent !important;
      background: #fff;
      width: 25px;
      height: 25px;
      border: 1px solid black;
      margin-left: 1px;
      margin-right: 20px;
      padding: 2px;
    }

    input[type=checkbox]:checked:before {
      color: black !important;
    }

    @media screen and (max-width: 428px) {
      label.why {
        display: block;
        margin: 1px 0
      }

      ;
    }