 form{
    background-color: #fff;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    padding-top: 0;
  }
  .cdpxl-form__header{
    margin-bottom: 40px;
  }
  .cdpxl-form__title{
    font-size: 2.4rem;
  }
  .cdpxl-form__intro{
    font-size: 1.8rem;
    line-height: 2.7rem;
    margin-top: 3rem;
  }
  .cdpxl-form__main{
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .cdpxl-form__main a,
  .cdpxl-form__main{
    font-size: 16px;
  }
  .cdpxl-form__main a{
    text-decoration: underline;
  }
  .cdpxl-form__main a:hover{
    opacity: 0.75;
  }
  .cdpxl-form__row{
    display: grid;
    gap: 2rem;
  }
  

  .cdpxl-form__footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }

  #cdpxl-form__response p{
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    margin-top: 1rem;
    padding: 12px 24px;
    border: 1px solid #000;
  }
  fieldset{
    padding: 0;
    border: none;
  }
  label{
    display: block;
    margin-bottom: 0.5rem;
    font-size: 16px;
    font-family: 'lato-light', sans-serif;
  }
  fieldset.checkbox label.label--cdpxl-form__terms{
    font-size: 16px;
  }
  input,
  textarea{
    display: block;
    border: 1px solid #000;
    background-color: #fff;
    border-radius: 0;
    padding: 10px;
    color: #000;
    font-size: 1.2rem;
    width: 100%;
    font-family: 'lato-light', sans-serif;
  }
  input:focus,
  textarea:focus{
    border-color: #555;
    outline:0px none transparent;
  }
  textarea{
    height: 150px;
  }
  input[data-pdm="1"]{
    max-width: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    overflow: hidden;
  }
  input[type="submit"]{
    position: relative;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    padding: 24px 3rem;
    z-index: 2;
    font-size: 14px;
  }
  input[type="submit"]:hover{
    xbackground-color: #666;
  }
  .cdpxl-form__submit{
    position: relative;
  }
  .cdpxl-form__submit::before,
  .cdpxl-form__submit::after{
    content: '';
    position: absolute;
    z-index: 0;
  }
  .cdpxl-form__submit::before{
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
  }
  .cdpxl-form__submit::after{
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid #fff;
  }
  .cdpxl-form__submit:hover::after{
    border-width: 2px;
  }




  /* Checkbox & radio*/

    fieldset.checkbox label{
      display: block;
      font-size: 1.6rem;
      text-transform: none;
      cursor: pointer;
    }
    input[type="checkbox"],
    input[type="radio"]{
      display: inline;
      width: auto;
    }

  @media screen and (min-width: 768px) {

    .cdpxl-form__row[data-cols="2"]{
      grid-template-columns: 1fr 1fr;
    }

    .cdpxl-form__row[data-cols="3"]{
      grid-template-columns: 1fr 1fr 1fr;
    }

  }

   @media screen and (max-width: 1024px) {

    form{
      padding: 0;
    }

  }
  .valid > input{
    border-color: green;
  }
  .error > input{
    border-color: red;
  }