
.wpmlf-form {

  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px #ddd;
  max-width: 800px;
  margin: 30px auto;
  font-family: Arial, sans-serif;
}
.wpmlf-form label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}
.wpmlf-form input[type="text"],
.wpmlf-form input[type="email"],
.wpmlf-form input[type="file"],
.wpmlf-form select,
.wpmlf-form textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 4px;
  background-color: #ffffff;   /* Ensure white background */
  color: #000000;              /* Ensure black text */
}
.wpmlf-form textarea {
  resize: vertical;
}
.wpmlf-form .wpmlf-checkboxes label {
  display: block;
  margin-bottom: 10px;
}
.wpmlf-form button {
  background: #0073aa;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  margin-top: 20px;
  cursor: pointer;
}
.wpmlf-success {
  background: #d4edda;
  color: #155724;
  padding: 12px;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: center;
}
