/* donation-form.css */
.form-box-outline {
  width: 100%;
  border: 2px solid #ccc;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
}

.form-box-outline-1 {
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  border-left: none;
  border-right: none;
  border-radius: 0;
  padding: 20px;
  margin-bottom: 20px;
  /* width: 470px; */
  position: relative;
  /* left: -22px; */
}

/* .form-box-container-left {
  width: 703px;
}

.form-box-container-right {
  width: 471px;
} */

.form-fields-group {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.monthly-donation-container {
  display: flex;
  /* gap: 24px; */
  background: #fff0f0;
  padding: 30px;
  border-radius: 20px;
  max-width: 1366px;
  margin: auto;
  flex-wrap: wrap;
  justify-content: space-evenly;
}


.donation-form-left {
  width:50%;
  height: 1134px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.donation-summary-right {
  height: 1011px;
  display: flex;
  justify-content: center;
  margin: -19px 0px 0px 0px;
}
.donation-amount-boxes {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.donation-box {
  width: 212px;
  height: 59px;
  padding: 10px 20px;
  border: 2px solid #ccc;
  border-radius: 10px;
  cursor: pointer;
  /* background: #fff; */
  font-weight: 600;
}

.donation-box.popular {
  /* border-color: red; */
  color: red;
  position: relative;
}

.donation-box.popular::after {
  content: "★ Popular";
  position: absolute;
  top: -10px;
  /* right: -10px; */
  background: red;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 8px;
  margin: auto;
  left: 0;
  right: 0;
  width: fit-content;
}

.input-half,
.input-full {
  width: 100%;
  height: 52;
  gap: 8px;
  /* angle: 0 deg; */
  opacity: 1;
  padding-top: 16px;
  padding-right: 20px;
  padding-bottom: 16px;
  padding-left: 20px;
  border-radius: 100px;
  border-width: 1px;
  border: 1px solid #c3bbbb4a;
  background: #f6eeee;
}

.input-half-container {
  display: flex;
  gap: 10px;
}

.donation-summary-card {
  /* background: #fff; */
  padding: 20px;
  border-radius: 16px;
  /* box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08); */
}

.donation-summary-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.donation-summary-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

.donation-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 6px;
}

.pay-now-button {
  background: #f54f4f;
  color: white;
  border: none;
  border-radius: 24px;
  padding: 12px 24px;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  margin-top: 15px;
  cursor: pointer;
}

.payment-icons {
  margin-top: 12px;
  display: flex;
  justify-content: space-around;
}

.payment-icons img {
  height: 24px;
}

.quote-box {
  font-style: italic;
  font-size: 14px;
  color: #444;
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .donation-form-left {
    width: 100%;
  }

  .monthly-donation-container {
  display: flex;
  /* gap: 24px; */
  background: #fff0f0;
  padding: 30px;
  border-radius: 20px;
  max-width: 1366px;
  margin: auto;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

  /* .donation-summary-card {
    width: 100%;
  } */
}

