/* Container Utama Formulir CF7 */
.wpcf7-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  font-family: inherit;
}

/* Styling Label Form */
.wpcf7-form label {
  display: block;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

/* Styling Input Text, Tel, dan Email */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"] {
  width: 100%;
  margin-top: 6px;
  padding: 10px 14px;
  font-size: 15px;
  color: #1f2937;
  background-color: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
}

/* Efek Focus saat Input Diklik */
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="email"]:focus {
  outline: none;
  background-color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Styling Placeholder */
.wpcf7-form input::placeholder {
  color: #9ca3af;
  font-size: 13.5px;
}

/* Styling Tombol Submit */
.wpcf7-form input[type="submit"] {
  width: 100%;
  padding: 12px 20px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background-color: #2563eb;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

/* Efek Hover Tombol Submit */
.wpcf7-form input[type="submit"]:hover {
  background-color: #1d4ed8;
}

/* Kustomisasi Notifikasi Validasi & Error CF7 */
.wpcf7-not-valid-tip {
  color: #dc2626;
  font-size: 12px;
  font-weight: normal;
  margin-top: 4px;
}

.wpcf7-response-output {
  margin-top: 16px !important;
  padding: 12px !important;
  font-size: 14px !important;
  border-radius: 6px !important;
}

/* Posisi & Tampilan Spinner CF7 */
.wpcf7 .wpcf7-spinner {
  display: none;
}