* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}


/* Donation Page */
.donation-page {
    width: 100%;
    display: flex;
    justify-content: center;
    background-image: url('../img/donate-1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.dp-wrap {
    width: 95%;
    display: flex;
    padding: 5% 2%;
    justify-content: end;
}

.donation-form {
    width: 36%;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    display: flex;
    justify-content: center;
}

.form-wrap {
    padding: 3%;
    width: 90%;
}

.form-title h2 {
    color: red;
}

.donation-type {
    font-size: 1.3rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    padding: 5% 0;
}

.donation-type select {
    margin-top: 3%;
    /* height: 30px; */
}

.donation-container {
    width: 100%;
}
.fade-text {
    opacity: 1;
    transition: opacity 0.8s ease; /* fade duration */
}

.section-label {
    display: block;
    margin-bottom: 10%;
    font-size: 1.3rem;
    font-weight: 500;
}

.donation-radio-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
    margin-bottom: 20px;
    padding: 0 5%;
    font-size: 1.2rem;
    font-weight: 500;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.other-amount {
    margin-top: 10px;
} 

.hidden {
    display: none;
}

.amount-input {
    width: 150px;
    height: 40px;
    font-size: 18px;
    padding: 6px;
    margin-top: 5px;
}

.form-label {
    font-size: 1.2rem;
    margin-top: 2%;
    display: block;
}

.input-box {
    width: 100%;
    padding: 1.2%;
    border-radius: 3px;
    margin-bottom: 4px;
}

.row {
    display: flex;
    gap: 10px;
}

small {
    display: block;
    color: #777;
    margin-bottom: 15px;
    font-size: 14px;
}

.donate-options {
    font-size: 1.3rem;
    font-weight: 500;
}

.donate-options select {
    padding: 2% 0;
    font-weight: 400;
    width: 100%;
    margin: 2% 0;
}

#memoryInputWrapper {
    width: 100%;
    margin-bottom: 2%;
}

.hidden {
    display: none;
}


.newsletter {
    width: 100%;
    padding: 2%;
    display: flex;
    flex-direction: column;
}

.newsletter .form-label {
    margin-bottom: 5%;
}

.newsletter textarea {
    width: 100%;
    height: 60px;
    background-color: rgba(239, 239, 239, 0.772);
    resize: none;
    resize: vertical;
}

input{
    width: 100%;
    padding: 2% !important;
    border: 1px solid #ccc;
    border-radius: 5px !important;
    outline: none;
}
select, textarea {
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    padding: 2%;
}
input[type="radio"] {
    width: 18px;
    /* height: 18px; */
    margin-right: 8px;
}
#donate-btn {
    width: 95%;
    padding: 3%;
    border-radius: 5px;
    background-color: orange;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    margin: 1% auto;
    display: block;
}

#donate-btn:hover {
    background-color: rgb(255, 118, 50);
    color: white;
} 

.form-info {
    text-align: center;
    margin-top: 4%;
    font-size: 18px;
}

.form-info h2 {
    font-size: 2.2rem;
    color: #024f9c;
    margin-bottom: 2%;
}

footer {
    width: 100%;
    background-color: #00254B;
    display: flex;
    justify-content: center;
}

.form-title h1 {
    font-size: 2.2rem;
    text-align: center;
}

.form-title h2 {
    font-size: 1.9rem;
    text-align: center;
}

.footerWrap {
    width: 95%;
    display: flex;
    justify-content: space-between;
}

.footerbox {
    width: 24%;
    background-color: red;
}