/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 06 2026 | 15:12:26 */
/* ——— Contact Form 7 overall container ——— */
div.wpcf7 {
    background: #FFFBF7;
    padding: 30px 25px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    max-width: 600px;
    margin: auto;
    font-family: Arial, sans-serif;
}

/* ——— Form Labels ——— */
div.wpcf7 label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    font-size: 16px;
}

/* ——— Text Inputs, Email, Tel & Textarea ——— */
div.wpcf7 input[type="text"],
div.wpcf7 input[type="email"],
div.wpcf7 input[type="tel"],
div.wpcf7 input[type="number"],
div.wpcf7 textarea,
div.wpcf7 select {
    width: 100%;
    padding: 14px 16px;
	margin-top:10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #fff;
    font-size: 16px;
    color: #444;
    box-sizing: border-box;
}
div.wpcf7 .row{
	width: 100%;
}
div.wpcf7 .row .col-md-6{
	width: 48%;
	float:left;
}
.mar{
	margin-right:10px;
}
/* ——— Placeholder Text Styling ——— */
div.wpcf7 input::placeholder,
div.wpcf7 textarea::placeholder {
    color: #999;
    font-style: italic;
}

/* ——— Submit Button ——— */
div.wpcf7 input[type="submit"] {
    width: 100%;
    padding: 16px 0;
    background: #eb7100;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* ——— Submit Button Hover ——— */
div.wpcf7 input[type="submit"]:hover {
    background: #ef7100;
}

/* ——— Error Messages ——— */
div.wpcf7 .wpcf7-not-valid-tip {
    color: #d00;
    font-size: 14px;
    margin-top: -12px;
    margin-bottom: 10px;
}

/* ——— Success / Status Messages ——— */
div.wpcf7 .wpcf7-response-output {
    margin: 16px 0;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 15px;
}

/* Success styling */
div.wpcf7.sent .wpcf7-response-output {
    background: #e6ffed;
    border: 1px solid #46b450;
    color: #2d7a2d;
}

/* Error styling */
div.wpcf7.failed .wpcf7-response-output,
div.wpcf7.invalid .wpcf7-response-output {
    background: #ffe6e6;
    border: 1px solid #dc3232;
    color: #a12222;
}

/* === Radio Button as Button Style === */
.donation-radio input[type="radio"] {
    display: none;
}

/* Button look */
.donation-radio .wpcf7-list-item-label {
    display: inline-block;
    padding: 7px 15px;
    margin: 10px 0px;
    border: 2px solid #eb7100;
    border-radius: 10px;
    background: #fff;
    color: #eb7100;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* Hover */
.donation-radio .wpcf7-list-item-label:hover {
    background: #eb7100;
	color:#fff;
}

/* Selected button */
.donation-radio input[type="radio"]:checked + .wpcf7-list-item-label {
    background: #eb7100;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,120,212,0.3);
}

/* Responsive (mobile) */
@media (max-width: 600px) {
    .donation-radio .wpcf7-list-item-label {
        width: 100%;
        text-align: center;
    }
}
