/* ===== Form Wrapper ===== */
.donation-form-wrapper {
  padding: 50px !important;
  background: #fff;
  box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
} 

/* ===== Title Style ===== */
.donation-title{
  font-family: "Nunito";
  font-weight: 600;
  font-size: 2.3333333333rem;
  line-height: 35px;
  background: linear-gradient(180deg, #EBB011 0%, #ED861D 99.48%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
  margin-bottom: 40px;
}

/* ===== Label Style ===== */
.donation-form-wrapper label {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 34px;
  color: #000;
  border: 1px solid transparent;
  border-radius: 0px;
  box-shadow: none !important;
  display: block;
  margin-bottom: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
}

/* ===== Input Style ===== */
.donation-form-wrapper input,
.donation-form-wrapper textarea{
  background: transparent;
  width: 100%;
  border: 1px solid #ddd;
  height: 50px;
  padding-left: 15px;
  outline: none;
}

.donation-form-wrapper textarea{
  height: 150px;
  padding-top: 10px;
}

/* ===== Custom Radio Button ===== */
.custom-radio {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.custom-radio input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #007bff;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
}

.custom-radio input[type="radio"]:checked::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #007bff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
}

.single-radio {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.single-radio input {
  width: 20px;
  height: 20px;
}
.donation-form .row {
  row-gap: 20px;
}
.single-radio .radio-label {
  padding: 0;
  margin: 0;
}
/* ===== Button Style ===== */
.donation-form-wrapper .theme-btn::after {
  border-radius: 0px !important;
}

@media(max-width:767.98px){
  .donation-title {
  font-size: 24px;
  margin-bottom: 10px;
}
.donation-form-wrapper {
  padding: 20px !important;
}
.donation-form-wrapper label {
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 24px;
}
}