.wp-radio-form {

}

.wp-radio-form-row {
  label {
    display: block;

    .required{
      color: red;
    }
  }

  input, select {
    width: 100%;
    height: 34px;
    padding: 5px;
    border: 1px solid rgba(#ddd, .5);
  }

  textarea{
    width: 100%;
  }

  button {
    display: inline-block;
    text-decoration: none;
    font-size: 13px;
    line-height: 26px;
    height: 30px;
    margin: 0;
    padding: 0 15px 1px;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    -webkit-appearance: none;
    border-radius: 3px;
    white-space: nowrap;
    box-sizing: border-box;

    &[type=submit]{
      background: #0085ba;
      border-color: #0073aa #006799 #006799;
      box-shadow: 0 1px 0 #006799;
      color: #fff;
      text-decoration: none;
      text-shadow: 0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799;
    }
  }

  .wp-radio-form__input-checkbox{
    width: auto;
    height: auto;
  }

}