/* NGO Secure Donation Form Styles */
.ngo-donation-wrapper {
    font-family: Arial, sans-serif;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ddd;
}

.ngo-don-section {
    border-bottom: 1px solid #ddd;
    background: #fdfdfd;
}

/* Matching the grey header style from your image */
.ngo-don-header {
    background: #e9ecef;
    color: #0056b3;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
}

.ngo-don-body {
    padding: 20px;
}

.ngo-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ngo-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.ngo-form-group label {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #0056b3; /* Blue labels */
}

.ngo-req { color: red; }

/* Inputs Styling */
.ngo-donation-wrapper input[type="text"],
.ngo-donation-wrapper input[type="email"],
.ngo-donation-wrapper input[type="number"],
.ngo-donation-wrapper input[type="date"],
.ngo-donation-wrapper select {
    padding: 8px 5px;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    font-size: 14px;
    width: 100%;
}
.ngo-donation-wrapper input:focus, .ngo-donation-wrapper select:focus {
    outline: none;
    border-bottom: 2px solid #0056b3;
}

/* Citizenship Radio Buttons */
.ngo-citizenship-radios {
    display: flex;
    gap: 15px;
}
.ngo-radio-box {
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid #ccc;
    background: #eee;
    font-size: 14px;
    cursor: default; /* Since it's locked */
}
.ngo-radio-box.active {
    background: #337ab7;
    color: white;
    border-color: #337ab7;
}

/* Math Captcha */
.ngo-captcha-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
}
.captcha-label { color: #0056b3; font-weight: bold; }
.captcha-input { width: 80px !important; border-bottom: 1px solid #333 !important; text-align: center; }
.captcha-validate-text { color: red; font-size: 14px; }

/* Submit Area */
.ngo-consent-box { font-size: 14px; margin-bottom: 20px; }
.ngo-submit-area { text-align: center; margin-top: 20px; }

/* Green Donate Button */
.ngo-donate-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 18px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}
.ngo-donate-btn:hover { background: #218838; }

.ngo-trust-badge {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    border: 1px solid #eee;
}

/* Offline Details Box */
.ngo-offline-details {
    text-align: center;
    padding: 20px;
}
.bank-info-box {
    text-align: left;
    max-width: 400px;
    margin: 15px auto 0;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
}