
/* Header
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.donation-header {
    background: #ffffff;
    border-bottom: 1px solid #e5dfc7;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    padding: 1rem 0;
    text-align: left;
    margin-bottom: 2rem;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    align-self: left;
    padding-left: 2.5rem;
}

.donation-header img {
    height: 70px;
    max-width: 90%;
    transition: opacity .2s ease;
}

.donation-header a:hover img {
    opacity: .85;
}

/* Basics
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h2, h3 {
    color: #5b320d;
    font-family: "Rubik", sans-serif;
    font-weight: 800;
}

h4 {
    color: #5b320d;
    font-family: "Rubik", sans-serif;
    font-weight: 800;
}



/* Form
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out; 
}

.form-card {
    background: #f4f1de;
    border: 1px solid #e5dfc7;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

label {
    padding-top: 1rem;
}

.CreditCardImages {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

 .FormContainer {
     max-width: 900px;
     width: 100%;
     margin: 0 auto;
     padding: 1rem;            
}

.form-control,
.FormContainer input,
.FormContainer select {
    width: 100%;
}

.FormContainer input[type="checkbox"] {
    width: inherit;
}

.form-control, .commercehub-form, input[type="tel"], input[type="text"] {
    background-color: white !important;
}

.ValidationSummary,
.FormErrorLabel {
    color:#f57720;
}

/* Button
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.donate-btn {
    color: #fff;
    background-color: #f57720;
    border-color: #f57720;
    

    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    min-height: 50px;
    font-weight: 600;
}

.donate-btn:hover {
    background-color: #e54500;
}

input[type="checkbox"] {
    margin-right:10px;
}

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width: 768px) {
    .form-card {
        padding: 1.25rem;
    }

    .donate-btn {
        width: 100%;
    }
}

       