.overlay-donation-container {
  background-image: url("../Assets/Images/children.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.donation-container {
  display: flex;
  padding: 100px;
  background-color: #000000ce;
  backdrop-filter: blur(4px);
  font-family: var(--fire-font);
  gap: 50px;
}

.amount-selector {
  margin-bottom: 30px;
  padding: 50px 20px;
  border: 1px solid #e6ebf1;
  /* background: #3c444d; */
  background-color: #fff;
  height: fit-content;
  width: 50%;
}

.amount-selector h3 {
  margin: 0 0 20px 0;
  color: #32325d;
  color: var(--primary-color);
}

.amount-selector p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.preset-amounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.amount-button {
  padding: 12px 20px;
  border: 2px solid #e6ebf1;
  background: white;
  cursor: pointer;
  font-family: var(--popins-font);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s;
  text-align: center;
  height: 100px;
  background-color: var(--primary-color);
  color: #fff;
}

.amount-button:hover {
  background-color: #ee835d;
}

.amount-button.selected {
  border-color: #635bff;
  background: #635bff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  background: #fff;
  border: 2px solid var(--primary-color);

  color: var(--primary-color);
}

.custom-amount {
  margin-top: 15px;
}

.custom-amount label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #32325d;
  color: var(--primary-color);
}

.custom-amount input {
  width: 100%;
  padding: 12px;
  border: 2px solid #e6ebf1;

  /* border-radius: 6px; */
  font-size: 16px;
  box-sizing: border-box;
}

.custom-amount input:focus {
  outline: none;
  border-color: #635bff;
  border-color: var(--primary-color);
}

.proceed-button {
  width: 100%;
  padding: 15px;
  background: #635bff;
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 20px;
  font-family: var(--popins-font);
}

.proceed-button:hover {
  background: #5a52e8;
  background-color: var(--primary-color);
}

.proceed-button:disabled {
  background: #a8a8a8;
  cursor: not-allowed;
}

#checkout {
  /* border: 1px solid #e6ebf1;
  border-radius: 8px; */
  padding: 20px;
  display: none;
}

#checkout.show {
  display: block;
  width: 50%;
}

.error {
  color: #dc3545;
  margin-top: 10px;
  font-size: 14px;
}

@media (max-width: 867px) {
  .donation-container {
    flex-direction: column;
    padding: 50px 20px;
  }

  .amount-selector {
    width: 100%;
  }

  #checkout {
    padding: 0;
  }

  #checkout.show {
    width: 100%;
  }
}
