.niepekaj-donation-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
}

.niepekaj-amount-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: space-between;
}

/* AMOUNT BUTTONS */
button.niepekaj-amount-btn {
    flex: 1 !important;
    padding: 18px 20px !important;
    background: #DD3173 !important;
    background-color: #DD3173 !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 50px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

button.niepekaj-amount-btn:hover {
    background: #FCDDEC !important;
    background-color: #FCDDEC !important;
    color: #DD3173 !important;
}

button.niepekaj-amount-btn:focus {
    background: #DD3173 !important;
    background-color: #DD3173 !important;
    color: #FFFFFF !important;
    outline: none !important;
}

button.niepekaj-amount-btn.active {
    background: #FCDDEC !important;
    background-color: #FCDDEC !important;
    color: #DD3173 !important;
}

.niepekaj-custom-amount {
    margin-bottom: 20px;
}

.niepekaj-custom-amount label {
    display: block;
    font-family: 'Playfair Display', serif;
    color: #292A7E;
    font-size: 16px;
    margin-bottom: 8px;
}

.niepekaj-custom-amount input {
    width: 100%;
    padding: 12px;
    border: 2px solid #292A7E;
    border-radius: 4px;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    color: #212121;
    box-sizing: border-box;
}

.niepekaj-custom-amount input:focus {
    outline: none;
    border-color: #DD3173;
}

.niepekaj-donor-info {
    margin-bottom: 20px;
}

.niepekaj-form-group {
    margin-bottom: 15px;
}

.niepekaj-form-group label {
    display: block;
    font-family: 'Playfair Display', serif;
    color: #292A7E;
    font-size: 16px;
    margin-bottom: 8px;
}

.niepekaj-form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #292A7E;
    border-radius: 4px;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    color: #212121;
    box-sizing: border-box;
}

.niepekaj-form-group input:focus {
    outline: none;
    border-color: #DD3173;
}

/* SUBMIT BUTTON */
.niepekaj-submit-btn {
    width: 100% !important;
    padding: 18px 20px !important;
    background: #DD3173 !important;
    background-color: #DD3173 !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 50px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    outline: none !important;
    box-shadow: none !important;
}

.niepekaj-submit-btn:hover {
    background: #FCDDEC !important;
    background-color: #FCDDEC !important;
    color: #DD3173 !important;
}

.niepekaj-submit-btn:disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
}

/* ERROR MESSAGES */
.niepekaj-error {
    color: #DD3173 !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 12px !important;
    margin-top: 5px !important;
    display: none;
    font-weight: 400;
}

.niepekaj-error.visible {
    display: block !important;
}

.niepekaj-loading {
    display: none;
    text-align: center;
    padding: 20px;
    font-family: 'DM Sans', sans-serif;
    color: #292A7E;
}

.niepekaj-loading.active {
    display: block;
}

@media (max-width: 600px) {
    .niepekaj-amount-options {
        flex-direction: column;
    }
}