/* Start custom CSS *//* Wrapper background */
.wcff-fields-group {
  background: #e9f7ef; /* light green */
  border: 1px solid #b7e4c7;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
}

/* Table cleanup */
.wccpf_fields_table {
  width: 100%;
  border-collapse: collapse;
}

/* Label column */
.wccpf_label label {
  font-weight: 600;
  color: #1b4332;
  font-size: 14px;
}

/* Required star */
.wccpf_label span {
  color: #d00000;
}

/* Input field */
.wccpf-field[type="email"] {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #95d5b2;
  background: #ffffff;
  font-size: 14px;
  transition: all 0.2s ease;
}

/* Input focus state */
.wccpf-field[type="email"]:focus {
  outline: none;
  border-color: #52b788;
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.2);
}

/* Validation message */
.wccpf-validation-message {
  font-size: 12px;
  color: #b00020;
  margin-top: 4px;
  display: block;
}

/* Responsive tweak */
@media (max-width: 600px) {
  .wccpf_label,
  .wccpf_value {
    display: block;
    width: 100%;
  }

  .wccpf_label {
    margin-bottom: 6px;
  }
}/* End custom CSS */