/* 
* Frontend styles for Connect NGOs ID Card plugin
*/

/* Download form styling */
.cngos-download-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.cngos-download-form h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
    font-size: 22px;
}

.cngos-download-form .form-group {
    margin-bottom: 20px;
}

.cngos-download-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.cngos-download-form input[type="email"],
.cngos-download-form input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.cngos-download-form input[type="email"]:focus,
.cngos-download-form input[type="text"]:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 5px rgba(0,115,170,0.3);
}

.cngos-download-form .button {
    width: 100%;
    padding: 14px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s;
    text-align: center;
}

.cngos-download-form .button:hover {
    background: #005a87;
}

/* Message styling */
.cngos-success {
    background: #dff0d8;
    color: #3c763d;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    text-align: center;
    border-left: 4px solid #5cb85c;
}

.cngos-error {
    background: #f2dede;
    color: #a94442;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    text-align: center;
    border-left: 4px solid #d9534f;
}

.cngos-success a,
.cngos-error a {
    font-weight: bold;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .cngos-download-form {
        padding: 15px;
    }
    
    .cngos-download-form h3 {
        font-size: 20px;
    }
    
    .cngos-download-form input[type="email"],
    .cngos-download-form input[type="text"],
    .cngos-download-form .button {
        padding: 10px;
        font-size: 14px;
    }
}
