/* Fix invisible form fields */
#ngoForm input,
#ngoForm select,
#ngoForm textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc !important;
    border-radius: 6px;
    background: #fff !important;
    color: #000 !important;
    display: block;
    margin-bottom: 15px;
    font-size: 15px;
}

/* File inputs */
#ngoForm input[type="file"] {
    padding: 6px;
    background: #fff !important;
}

/* Labels */
#ngoForm label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

/* Button */
#ngoForm button {
    background: #0073aa;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

#ngoForm button:hover {
    background: #005f8c;
}
