.form-container {
  margin: 0 auto;
  max-width: 867px;
  width: 100%;
  padding: 45px;
  background: #1d4548;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid #05c4c3;

  @media (max-width: 950px) {
    & {
        padding: 25px 20px;
    }
  }


  .details-wrap {
    margin-bottom: 40px;

    @media (max-width: 950px) {
        & {
            margin-bottom: 25px;
        }
    }

    .details-title {
      font-size: 30px;
      color: white;
      margin: 0;
      font-weight: 400;

      @media (max-width: 950px) {
        & {
            font-size: 20px;
            line-height: 1.1;
            margin-bottom: 10px;
        }
      }
    }

    .details-description {
      font-size: 15px;
      color: white;
      opacity: 0.6;
      margin: 0;

      @media (max-width: 950px) {
        & {
            font-size: 14px;
        }
      }
    }
  }

  form {
    margin: 0;

    textarea,
    input {
      background-color: #275f63;
      color: white;
      border-radius: 0;
      padding: 13px 25px;
      border: none;
      width: 100%;
      font-size: 15px;

      &::placeholder {
          color: #ffffffad;
      }

      @media (max-width: 950px) {
        & {
            font-size: 13px;
            line-height: 1.2;
            padding: 12px;
        }
      }

      &:focus {
          color: white;
          outline: none;
          box-shadow: none;
          outline: 1px solid #05c4c3;
      }
    }

    .wpcf7-list-item-label > a {
        color: white;
        text-decoration: underline;
    }

    .wpcf7-acceptance {
      .wpcf7-list-item {
        margin-left: 0;
      }

      .wpcf7-list-item-label {
        font-size: 14px;
        color: white;
        opacity: 0.6;
        font-weight: 300;
      }
    }

    /* Custom Checkbox for .field-pp */
    input.field-pp[type="checkbox"],
    input.field-marketing[type="checkbox"] {
      appearance: none;
      -webkit-appearance: none;
      width: 24px;
      height: 24px;
      box-sizing: border-box;
      background: #275f63;
      border: 2px solid #275f63;
      border-radius: 0;
      display: inline-block;
      position: relative;
      vertical-align: middle;
      margin: 0 8px 3px 0;
      padding: 0;
      cursor: pointer;
    }
    input.field-pp[type="checkbox"]:checked,
    input.field-marketing[type="checkbox"]:checked {
      background: #275f63;
    }
    input.field-pp[type="checkbox"]::after,
    input.field-marketing[type="checkbox"]::after {
      content: "";
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }
    input.field-pp[type="checkbox"]:checked::after,
    input.field-marketing[type="checkbox"]:checked::after {
      display: block;
      left: 6px;
      top: 1px;
      width: 8px;
      height: 15px;
      border: solid #05c4c3;
      border-width: 0 2px 2px 0;
      border-radius: 1px;
      transform: rotate(45deg);
      background: none;
      content: "";
      position: absolute;
    }

    .submit-wrap {
      > p {
        margin: 0;
        text-align: center;

        .wpcf7-submit {
          padding: 15px 85px 13px;
          margin-top: 20px;
          background: #05c4c3;
          font-size: 20px;
          color: #1d4548;
          font-weight: 400;
          width: auto;

          @media (max-width: 950px) {
              font-size: 14px;
          }

          &:disabled {
            cursor: not-allowed;
            opacity: 0.4;
            filter: grayscale(1);
          }
        }

        .wpcf7-spinner {
            display: none;
        }
      }
    }

    .wpcf7-response-output {
        text-align: center;
        border-radius: 5px;
        padding: 10px;
        color: #ffffff91;

        @media (max-width: 950px) {
            & {
                font-size: 12px;
            }
        }
    }
  }
}
