.donation-form {
  background: #fff;
  max-width: 480px;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.donation-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  min-height: 60px;
}

.toggle-buttons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  gap: 10px;
}

.toggle-buttons button {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  background: #eee;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.toggle-buttons button.active {
  background: #1fa67a;
  color: #fff;
  border-color: #3ebd88;
}

.amount-buttons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.amount-buttons button {
  flex: 1 1 30%;
  padding: 10px;
  border: 1px solid #3ebd88;
  background: white;
  color: #3ebd88;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.amount-buttons button.selected {
  background: #1fa67a;
  color: white;
}

.submit-btn {
  width: 100%;
  background: #1fa67a;
  color: white;
  padding: 14px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #28bb8a;
}

@media (max-width: 500px) {
  .amount-buttons button {
    flex: 1 1 100%;
  }

  .toggle-buttons {
    flex-direction: column;
  }

  .toggle-buttons button {
    margin-bottom: 10px;
  }
}


@media (max-width: 768px){
  .donation-form {
  margin-top: 20px;
}
}


@media (max-width: 480px){
  .donation-form {
  margin-top: 0px;
}
}
