.wpforms-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background-color: #f6fdf9;
  border: 1px solid #d4e9dc;
  border-radius: 12px;
  font-family: "Segoe UI", sans-serif;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.wpforms-form label {
  font-weight: bold;
  margin-top: 14px;
  display: block;
  color: #333;
}

.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #c2d8cf;
  border-radius: 6px;
  font-size: 16px;
  background-color: #ffffff;
}

.wpforms-form textarea {
  height: 120px;
  resize: vertical;
}

.wpforms-form button,
.wpforms-submit {
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #28a07b;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.wpforms-form button:hover,
.wpforms-submit:hover {
  background-color: #1e7b5e;
  transform: scale(1.02);
}
