.ecobio-rep-form-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.ecobio-rep-form {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.ecobio-rep-form h2 {
  margin: 0 0 8px;
  font-size: 1.75rem;
  color: #14532d;
}

.ecobio-rep-intro {
  margin: 0 0 24px;
  color: #4b5563;
}

.ecobio-rep-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ecobio-rep-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ecobio-rep-full {
  grid-column: 1 / -1;
}

.ecobio-rep-field label {
  font-weight: 600;
  color: #111827;
  font-size: 0.95rem;
}

.ecobio-rep-field input,
.ecobio-rep-field select,
.ecobio-rep-field textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ecobio-rep-field input:focus,
.ecobio-rep-field select:focus,
.ecobio-rep-field textarea:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.ecobio-rep-actions {
  margin-top: 24px;
}

.ecobio-rep-submit {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: #15803d;
  color: #fff;
  font: inherit;
  font-weight: 700;
  padding: 14px 28px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ecobio-rep-submit:hover {
  background: #166534;
}

.ecobio-rep-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.ecobio-rep-feedback {
  margin-top: 16px;
  font-weight: 600;
}

.ecobio-rep-feedback--success {
  color: #15803d;
}

.ecobio-rep-feedback--error {
  color: #b91c1c;
}

@media (max-width: 768px) {
  .ecobio-rep-grid {
    grid-template-columns: 1fr;
  }

  .ecobio-rep-form {
    padding: 20px;
  }
}
