/* Keep your existing CSS, but ensure these additions are included */

.form-row {
  display: flex;
  gap: 20px;
}

/* Your existing responsive rule works perfectly here */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  /* Ensure inputs take full width on mobile */
  input[type="tel"],
  input[type="number"],
  input[type="date"] {
    max-width: 100% !important;
  }
}

/* Ensure the submit button is styled per your request */
.submit-btn {
  background-color: #4f7e2a; /* Your RUWAI Green */
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  max-width: 150px;
  margin-top: 20px;
}
