<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.wp-contact-form-api-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.wp-contact-form-api {
  width: 100%;
}

.wp-contact-form-api .form-group {
  margin-bottom: 20px;
  width: 100%;
}

/* Label styles */
.wp-contact-form-label {
  display: block;
  margin-bottom: 8px;
}

.wp-contact-form-api .required {
  color: #dc3232;
  margin-left: 3px;
}

/* Input styles */
.wp-contact-form-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 15px;
}

.wp-contact-form-input:focus {
  border-color: #0073aa;
  outline: none;
  box-shadow: 0 0 2px rgba(0,115,170,0.8);
}

.wp-contact-form-api textarea.wp-contact-form-input {
  min-height: 150px;
  resize: vertical;
}

/* Button styles */
.wp-contact-form-submit {
  background-color: #0073aa;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.wp-contact-form-submit:hover {
  background-color: #005177;
}

.wp-contact-form-submit:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Honeypot field */
.honeypot-field {
  display: none !important;
  opacity: 0 !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
  z-index: -999 !important;
  pointer-events: none !important;
}

/* Form response messages */
.wp-contact-form-api .form-response {
  margin-top: 20px;
  padding: 12px 15px;
  border-radius: 4px;
  font-size: 14px;
  display: none;
}

.wp-contact-form-api .form-response.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.wp-contact-form-api .form-response.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Loading spinner */
.wp-contact-form-api .loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Mobile styles */
@media screen and (max-width: 480px) {
  .wp-contact-form-api-container {
      padding: 15px;
  }
  
  .wp-contact-form-submit {
      width: 100%; /* Full width button on mobile */
      padding: 12px;
  }
  
  .wp-contact-form-api textarea.wp-contact-form-input {
      min-height: 120px; /* Slightly shorter textarea on mobile */
  }
}</pre></body></html>