/* ------------------------------
   PIXEL PIXIE STUDIO FORM STYLE
   Targeting form ID: bd7defe
   Colors: #acafe0, #d2d8ed, #0049aa, #9bb8df
   ------------------------------ */

.wpcf7-form-id-bd7defe {
  max-width: 650px;
  margin: 0 auto;
  padding: 20px 0;
  font-family: inherit;
  color: #4a4458;
}

/* Labels */
.wpcf7-form-id-bd7defe label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #746e7c;
  letter-spacing: 0.3px;
}

/* Inputs + Textareas */
.wpcf7-form-id-bd7defe input[type="text"],
.wpcf7-form-id-bd7defe input[type="email"],
.wpcf7-form-id-bd7defe input[type="tel"],
.wpcf7-form-id-bd7defe textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d2d8ed;
  background: #fafaff;
  font-size: 16px;
  color: #4a4458;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(156, 184, 223, 0.18);
}

/* Focus Glow */
.wpcf7-form-id-bd7defe input:focus,
.wpcf7-form-id-bd7defe textarea:focus {
  border-color: #acafe0;
  box-shadow: 0 0 0 4px rgba(172, 175, 224, 0.35);
  background: #ffffff;
  outline: none;
}

/* Submit Button */
.wpcf7-form-id-bd7defe input[type="submit"] {
  background: linear-gradient(135deg, #acafe0, #9bb8df);
  color: #fff;
  padding: 14px 26px;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.4px;
  transition: all 0.25s ease;
  margin-top: 12px;
  box-shadow: 0 4px 12px rgba(0, 73, 170, 0.25);
}

/* Hover Magic */
.wpcf7-form-id-bd7defe input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 73, 170, 0.35);
  background: linear-gradient(135deg, #b9c4ff, #9bb8df);
}

/* Error Messages */
.wpcf7-form-id-bd7defe .wpcf7-not-valid-tip {
  color: #d46a6a;
  font-size: 14px;
  margin-top: 4px;
}

/* Success / Error Output Box */
.wpcf7-form-id-bd7defe .wpcf7-response-output {
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 20px;
  border: 1px solid #acafe0;
  background: #f4f6ff;
  color: #4a4458;
  box-shadow: 0 2px 8px rgba(156, 184, 223, 0.25);
}