/* organisation_form.css */
.organisation_form {
  font-family: "Inter", Arial, sans-serif;
  max-width: 320px;
  margin: 6rem auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.organisation_form label {
  font-weight: 600;
  color: #00071a;
}

.organisation_form input[type="text"] {
  padding: 0.5rem;
  border: 1px solid #d8d7de;
  border-radius: 4px;
  font-size: 1rem;
}

.organisation_form input[type="submit"] {
  padding: 0.5rem 1rem;
  background-color: #654cf5;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.organisation_form input[type="submit"]:hover {
  background-color: #0c13e0;
}

.organisation_form .message {
  margin-top: 0.5rem;
  color: #00071a;
}

.organisation_form .message.error {
  color: #c00;
}
