/* Общий стиль формы */
.donation-form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  margin: auto;
  font-family: Arial, sans-serif;
}

/* Заголовок */
.donation-form h2 {
  color: #1D7F4A;
}

/* Радиокнопки */
.amount-options label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s;
}

.amount-options input {
  display: none;
}

.amount-options label:hover {
  background: #E6F4EC;
}

.amount-options input:checked + label {
  background: #1D7F4A;
  color: white;
}

/* Поля ввода */
.input-field {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
  transition: border 0.2s;
}

.input-field:hover {
  border-color: #1D7F4A;
}

.input-field:focus {
  border-color: #155A34;
  outline: none;
}

/* Чекбоксы */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  margin-bottom: 5px;
}

.checkbox-label input {
  display: none;
}

.checkbox-label span {
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  border-radius: 3px;
  display: inline-block;
  transition: background 0.2s, border 0.2s;
}

.checkbox-label:hover span {
  border-color: #1D7F4A;
}

.checkbox-label input:checked + span {
  background: #1D7F4A;
  border-color: #1D7F4A;
}

/* Кнопка */
.donate-btn {
  background: #1D7F4A;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}

.donate-btn:hover {
  background: #155A34;
}

.donate-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}



div#tildaformsuccesspopup, .js-successbox.t-form__successbox {
  display: none !important;
}
