.form-check:has(.purpose) {
  margin-bottom: 14px;
}
.form-control {
  border: 2px solid #c85c00;
  border-radius: 8px;
  padding: 10px;
  font-size: 1rem;
}

.form-control:focus {
  border-color: #7a0c10;
  box-shadow: 0 0 0 0.2rem rgba(122, 12, 16, 0.25);
}

/* Container for each checkbox (optional background + border) */
/* Checkbox input styling */
.form-check-input {
  width: 24px;               /* bigger size */
  height: 24px;
  border: 2px solid #c85c00;  /* match input fields */
  border-radius: 4px;          /* slight rounding */
  background-color: #fff8f0;   /* light background */
  accent-color: #7a0c10;       /* tick color */
  cursor: pointer;
  transition: all 0.2s ease;
  margin-right: 10px;
}

/* Hover effect on checkbox itself */
.form-check-input:hover {
  border-color: #7a0c10;
  background-color: #fff3e0;
}

/* Highlight when checked */
.form-check-input:checked {
  background-color: #c85c00;
  border-color: #7a0c10;
}

/* Label text remains normal, no box around it */
.form-check-label {
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.donation-amount {
  max-width: 300px;
}
.btn-donate {
  font-size: 1rem;         /* readable text */
  padding: 8px 12px;       /* smaller padding */
  border-radius: 6px;      /* rounded corners */
  width: 250px;
  max-width: 60%;
}
.header-box {
  background-color: #c85c00;  /* temple theme color */
  color: #ffffff;             /* white text */
  padding: 10px 15px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 6px 6px 0 0; /* rounded top corners */
  margin-bottom: 10px;
}
.form-check-label {
  display: inline-block;  /* default */
  margin-left: 8px;       /* space from checkbox */
  vertical-align: middle; /* align with checkbox */
}




