@charset "UTF-8";

.donation-form {
    display: flex;
    flex-direction: column;
    background-color: #000; /* Black background */
    padding: 20px;
    color: #fff; /* White text */
}

.donation-input {
    display: flex;
    align-items: center;
    background-color: #fff;
    color: #000;


    margin-bottom: 10px;
    width: 100%;
    max-width: 160px;
}

.donation-input span {
    background-color: #f2f2f2;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    box-sizing: border-box;
    color: #333;
    float: left;
    font-size: 18px;
    height: 35px;
    line-height: 35px;
    margin: 0;
    padding: 0 12px;
}

.donation-input input {
    border: none !important;
    outline: none;
    font-size: 1.2em;
    color: #000;
    width: 100%;
}

.donation-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.donation-buttons button {
    background-color: #ccc;
    color: #000;
    padding: 8px 15px;
    font-size: 0.9em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.donation-buttons button:hover {
    background-color: #bbb;
}

.donation-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.donation-checkbox input[type="checkbox"] {
    margin-right: 5px;
}

.donation-checkbox label {
    color: #f00; /* Red text */
    font-size: 0.9em;
}

.donate-now-button {
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
}

.donate-now-button:hover {
    background-color: #eee;
}
