.process-step {
  background-color: #E0F2F1;
  color: #004D40;
  font-weight: 600;
  padding: 1rem;
  text-align: center;
  border-radius: 0.5rem;
  flex: 1;
}
/* Form container */
form {
  max-width: 500px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Labels */
form label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Inputs and textarea */
form input,
form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

/* Submit button */
form button[type="submit"] {
  background-color: #007bff; /* Change to your brand color */
  color: white;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* Hover effect */
form button[type="submit"]:hover {
  background-color: #0056b3; /* Darker shade of brand color */
}
