* {
  margin: 0;
  padding: 0;
  
  box-sizing: border-box;
}

img {
  width: 100%;
}

body {
  font-family: "Open Sans", sans-serif;

}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* HEADER */
header {
  display: flex;
  justify-content: center;
  padding: 30px 0 0;
}

.logo img {
  width: 100px;
  height: auto;
  display: block;
}
/* CHOOSE-PAYMENT-SEC */
.choose-payment {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 130px); 
  padding: 30px 16px;
}

.choose-card {
  background: linear-gradient(135deg, #e8fdf5, #ffffff);
  color: #003b33;
  padding: 50px 30px;
  border-radius: 24px;
  max-width: 720px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.choose-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #004d40;
  margin-bottom: 10px;
}

.choose-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}


.choose-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.payment-btn {
  background: linear-gradient(135deg, #00b894, #00695c);
  color: white;
  padding: 14px 24px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 105, 92, 0.15);
  border: none;
  cursor: pointer;
}

.payment-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 105, 92, 0.25);
}

.payment-btn img {
  width: 20px;
  height: 20px;
}
/* DONATION-SEC */
.donation-sec {
  background: #fefefe;
  display: flex;
  justify-content: center;
  align-items: center;

}

.form-container {
  width: 600px;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  background: #fff;
  text-align: center;
}

.dn-head {
  color: #0d2b26;
  margin-bottom: 20px;
  text-align: center;
}

.amount-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eaf7f6;
  padding: 12px 16px;
  border-radius: 16px;
  width: fit-content;
  gap: 10px;
  color: #012E28;
  margin: auto;
  margin-bottom: 20px;
}

.amount-wrapper .currency {
  font-size: 1.5rem;
  color: #014c3d;
}

.amount-wrapper input {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  color: #014c3d !important;
  outline: none;
  width: 120px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select {
  width: 100%;
 
  padding: 12px;
  font-size: 16px;
  border: 2px solid #cceee2;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #007f5f;
}


 .hide-name-container {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .hide-name-container input[type="checkbox"] {
      appearance: none;
      width: 20px;
      height: 20px;
      border: 2px solid #2d5c1f;
      border-radius: 50%;
      cursor: pointer;
      position: relative;
    }

    .hide-name-container input[type="checkbox"]:checked::before {
      content: "";
      position: absolute;
      top: 4px;
      left: 4px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: #2d5c1f;
    }

    .hide-name-container label {
      font-weight: 600;
      color: #2d5c1f;
      font-size: 16px;
    }
/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(to right, #019B81, #0A2F28);
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(to right, #0f9b8e, #0bbd8c);
}


.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: #007f5f;
  text-align: left;
  font-weight: 300;
}

/* ACTIONS */

.actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.actions .back-btn,
.actions .home-btn {
  height: 48px;
  width: 48px;
  border-radius: 16px;
  background-color: transparent;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.actions .back-btn i,
.actions .home-btn i {
  font-size: 16px;
  color: #333;
}

