
.container-donotion{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 100px;
}
.donation-form {
  width: 80%;
padding-top: 40px;
 
 
}

.form-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  text-align: left;
}

label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

label span {
  color: red;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

textarea {
  resize: none;
}

button {

  padding: 15px;
  font-size: 16px;
  color: white;
  background-color: var(--color-primary); /* Orange color for the PAY button */
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background-color: #e69500;
}
.with-bullets {
  list-style-type: disc;
}