.the-header-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
   box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  padding: 2px 7%;
  background-color: #fff;

  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  /* height: 6.5rem; */
  z-index: 100;
}



.the-logo{
height: 6rem;
}





.the-nav-bar a{
  font-size: 1.2rem;
  /* font-weight: 500; */
  padding: 0 1rem;
  color: #000;
  text-wrap: nowrap;

}

.the-nav-bar a:hover{
  color: var(--accent-purple);
  font-weight: 700;
}


#menu-btn{
	display: none;
}





/* 
.donate-btn-container{
   width: 25%;
   padding-right: 1.2%;

   display: flex;
   justify-content: end;
   align-items: center;
} */

.donate-btn{
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background-color:var(--accent-purple);
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
.donate-btn:hover{
  font-weight: 700;
  padding: 10px 14px;
  
}




/* donation form */
.donation-form-container{
 width: 50%;
  margin: 1rem auto;
  
}

.donation-form-container form{
  background-color: #fff;
   padding: 1.5rem 1.5rem 2rem 1.5rem;
   border-radius: 0.3rem;
   width: 600px;
   max-width: 90%;
}

.donation-form-container form .the-x-btn{
  font-size: 3rem;
  position: absolute;
  top: 2rem; right: 2rem;
  color: #fff;
  cursor: pointer;
}
.donation-form-container form .the-x-btn:hover{
  color: var(--primary-blue);
}

.donation-form-container h1{
  text-align: center;
  padding: 1rem 0;
}
.donation-form-container h1 i{
  color: var(--primary-blue);
  margin-right: 1rem;
}

.donation-form-container .form-field input{
  background-color: rgba(36, 116, 168, 0.15);
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    color: #343434;
    text-transform: none;
    border-radius: .3rem;
}
.donation-form-container .form-row{
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.donation-form-container .form-row .form-field{
  flex: 1 1 20rem;
}

.donation-form-container .form-row .form-field label,
.donation-form-container .form-field label{
  margin-bottom: 1rem;
  font-size: 1.3rem;

}

.amount-box{
 position: relative;
}

.currency{
  position: absolute;
  right: 1rem;
  top: 50%;
  font-size: 1.2rem;
  transform:translateY(-50%);
}

.small-info{
  padding: 5rem 0;
}

.payment-title{
  font-size: 1.2rem;
  padding: 1rem 0;
}
.payment-option{
  display: block;
 
}
.the-radio{
  margin: 0 2rem 1rem 0;
}
.my-credit-card{
 font-size:1.2rem; 
 color:#2c3e50;
 padding-right: 0.5rem;
}
.my-pay-pal{
  font-size:1.4rem;
   color:#003087;
}
.payment-option strong{
  color:#0070ba;
  font-style: italic;
}
.payment-option strong span{
  color: #002991;
}

.dwd-donation-button{
  width: 100%;
  padding: 3rem auto;
  font-size: 1.4rem;
  border-radius: 0.2rem;
  background-color: var(--primary-blue);
  color: #fff;
  cursor: pointer;
}
.dwd-donation-button:hover{
  border: 1px solid var(--accent-purple);
  color: var(--accent-purple);
  background-color: rgba(255, 255, 255, 0.8);
  /* font-weight: 700; */

}







.donation-form-container{
  position: fixed; /*Keeps the login form fixed in place, covering the entire screen*/
  inset: 0;
  z-index: 1000; /* Ensures it stays above all other elements.*/
  display: flex; /*Centers the form horizontally and vertically.*/
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7); /*Adds a semi-transparent black background (dimming effect).*/
  width: 100%; height: 100%; /* Makes the dimmed background cover the entire screen*/

 
  transform: scaleY(0); /* Initially hides the form by scaling it to zero height*/
  transform-origin: top; /*The form will expand from the top when activated*/
}



/* IMPORTANT!!! NOTE: */
.donation-form-container.active{
 transform: scaleY(1);  /*When the .active class is added to .container-form,
                            it expands the form to full height (scaleY(1)).
                            This makes the form visible when a user clicks the login button.*/
}


.toast-message{
  font-size: 1.5rem;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4); 
  background-color: #fff;
  border: var(--accent-purple);
  color:#000;
  padding: 1rem 2rem;
  border-radius: 0.2rem;

  position: fixed;
  bottom: 4rem;
  left: 50%;
  z-index: 1000;

   
  transition: opacity 0.3s ease;
}