/* ===== Petpooja "Take a free demo" form ===== */

/* label above each field */
.pp-demo-form .pp-field {
  display: block;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: #1e1e1e;
}

/* each control on its own line, full width */
.pp-demo-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 6px;
}

/* text inputs */
.pp-demo-form input[type="text"],
.pp-demo-form input[type="email"],
.pp-demo-form input[type="tel"] {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  font-size: 14px;
  color: #1e1e1e;
  background: #fff;
  border: 1px solid #e2e0da;
  border-radius: 10px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.pp-demo-form input::placeholder { color: #9a9a9f; }
.pp-demo-form input[type="text"]:focus,
.pp-demo-form input[type="email"]:focus,
.pp-demo-form input[type="tel"]:focus {
  border-color: #c92337;
  box-shadow: 0 0 0 3px rgba(201,35,55,.12);
}

/* consent checkbox row */
.pp-demo-form .pp-consent { margin: 2px 0 16px; }
.pp-demo-form .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.pp-demo-form .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 400;
  color: #5a5a5f;
  line-height: 1.5;
  cursor: pointer;
}
.pp-demo-form input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: #c92337;
  flex: 0 0 auto;
}

/* submit button */
.pp-demo-form input[type="submit"] {
  display: block;
  width: 100%;
  margin-top: 4px;
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: #c92337;   /* Petpooja red — set to #111 for black */
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s ease, transform .05s ease;
}
.pp-demo-form input[type="submit"]:hover { background: #a81c2d; }
.pp-demo-form input[type="submit"]:active { transform: translateY(1px); }

/* inline validation errors */
.pp-demo-form .wpcf7-not-valid-tip {
  color: #c92337;
  font-size: 12px;
  margin-top: 5px;
}
.pp-demo-form input.wpcf7-not-valid { border-color: #c92337; }

/* success / error message box */
.pp-demo-form .wpcf7-response-output {
  margin: 16px 0 0 !important;
  padding: 11px 14px !important;
  border-width: 1px !important;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
}
.pp-demo-form.sent .wpcf7-response-output {
  border-color: #1d8a4e !important;
  background: #eaf7ef;
  color: #14713f;
}
.pp-demo-form.invalid .wpcf7-response-output,
.pp-demo-form.unaccepted .wpcf7-response-output,
.pp-demo-form.spam .wpcf7-response-output,
.pp-demo-form.failed .wpcf7-response-output {
  border-color: #c92337 !important;
  background: #fdecee;
  color: #a81c2d;
}

/* loading spinner spacing */
.pp-demo-form .wpcf7-spinner { margin: 0 0 0 10px; }