.wpcf7-form {
    padding: 10px;
}

.wpcf7-form label {
    font-weight: 600;
}

/* Full-width input fields */
input.wpcf7-text {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  display: inline-block;
  border: none;
  background: #f1f1f1;
}

input.wpcf7-text:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit button */
input.wpcf7-submit {
  background-color: var(--pcolor);
  color: white;
  padding: 16px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
  text-transform: uppercase;
}

.wpcf7-checkbox {
    display: flex;
    flex-direction: column;
}

span.wpcf7-list-item {
    display: block;
    margin-bottom: 10px;
    padding: 8px 15px;
    border: 2px solid #e6e6e6;
    transition: all 0.2s ease;
}

span.wpcf7-list-item .wpcf7-list-item-label {
    width: 100%;
    display: inline-flex;
}

span.wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 10px;
}

span.wpcf7-list-item [type="checkbox"] {
    height: 19px;
    width: 19px;
}

span.wpcf7-list-item:hover {
    border-color: var(--pcolor);
}

.wpcf7-checkbox span:hover {
    cursor: pointer;
}