.donation-checkout{
    padding:70px 0;
    background:#f7fbfa;
    min-height:calc(100vh - 100px);
}
.donation-checkout-heading{
    text-align:center;
    margin-bottom:45px;
}
.donation-checkout-heading>span{
    display:inline-block;
    color:#34b69e;
    font-size:15px;
    font-weight:700;
    margin-bottom:10px;
}
.donation-checkout-heading h1{
    margin:0;
    color:#005260;
    font-size:38px;
    font-weight:800;
}
.donation-checkout-line{
    width:70px;
    height:4px;
    background:#34b69e;
    border-radius:10px;
    margin:15px auto 0;
}
.donation-checkout-wrapper{
    max-width:1050px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1.15fr;
    gap:25px;
    align-items:start;
}
.donation-checkout-program,
.donation-checkout-form-wrapper{
    background:#fff;
    border:1px solid #e3eeee;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,82,96,.07);
}
.donation-checkout-image{
    width:100%;
    height:260px;
    overflow:hidden;
}
.donation-checkout-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.donation-checkout-placeholder{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eaf6f4;
    color:#005260;
    font-size:60px;
}
.donation-checkout-program-content{
    padding:28px;
}
.donation-checkout-short-name{
    display:inline-block;
    color:#34b69e;
    font-size:14px;
    font-weight:700;
    margin-bottom:8px;
}
.donation-checkout-program-content h2{
    color:#005260;
    font-size:26px;
    font-weight:800;
    margin:0 0 12px;
}
.donation-checkout-slogan{
    color:#777;
    line-height:1.8;
    margin-bottom:25px;
}
.donation-selected-amount{
    background:#f0f8f6;
    border:1px solid #d7ebe7;
    border-radius:15px;
    padding:18px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.donation-selected-amount span{
    color:#555;
    font-size:15px;
}
.donation-selected-amount strong{
    color:#005260;
    font-size:24px;
    font-weight:800;
}
.donation-checkout-form-wrapper{
    padding:32px;
}
.donation-checkout-form-heading{
    margin-bottom:25px;
}
.donation-checkout-form-heading span{
    color:#34b69e;
    font-size:14px;
    font-weight:700;
}
.donation-checkout-form-heading h3{
    color:#005260;
    font-size:23px;
    font-weight:800;
    margin:7px 0 0;
}
.donation-form-group{
    margin-bottom:20px;
}
.donation-form-group label{
    display:block;
    color:#005260;
    font-size:14px;
    font-weight:700;
    margin-bottom:8px;
}
.donation-form-group label span{
    color:#999;
    font-size:12px;
    font-weight:400;
    margin-right:5px;
}
.donation-form-group input{
    width:100%;
    height:52px;
    border:1px solid #d7e5e4;
    border-radius:12px;
    padding:0 16px;
    outline:none;
    color:#333;
    background:#fff;
    transition:.2s;
}
.donation-form-group input:focus{
    border-color:#34b69e;
    box-shadow:0 0 0 3px rgba(52,182,158,.1);
}
.donation-form-group small{
    display:block;
    color:#dc3545;
    margin-top:6px;
}
.donation-checkout-summary{
    margin-top:25px;
    padding:20px;
    border-radius:15px;
    background:#005260;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.donation-checkout-summary span{
    font-size:15px;
}
.donation-checkout-summary strong{
    font-size:24px;
    font-weight:800;
}
.donation-payment-btn{
    width:100%;
    height:56px;
    border:0;
    border-radius:13px;
    margin-top:18px;
    background:#34b69e;
    color:#fff;
    font-size:16px;
    font-weight:800;
    cursor:pointer;
    transition:.25s;
}
.donation-payment-btn:hover{
    background:#279d88;
    transform:translateY(-2px);
}
.donation-alert{
    padding:14px 16px;
    border-radius:12px;
    margin-bottom:20px;
    font-size:14px;
}
.donation-alert-error{
    background:#fff1f1;
    color:#c62828;
    border:1px solid #ffd5d5;
}
.donation-alert-success{
    background:#effaf6;
    color:#16745f;
    border:1px solid #cdeee5;
}
@media(max-width:900px){
    .donation-checkout-wrapper{
        grid-template-columns:1fr;
    }
}
@media(max-width:576px){
    .donation-checkout{
        padding:45px 15px;
    }
    .donation-checkout-heading h1{
        font-size:30px;
    }
    .donation-checkout-form-wrapper,
    .donation-checkout-program-content{
        padding:22px;
    }
    .donation-selected-amount,
    .donation-checkout-summary{
        gap:15px;
    }
    .donation-selected-amount strong,
    .donation-checkout-summary strong{
        font-size:20px;
    }
}