/* Falcone Volunteer Form - Modern Card Layout with Green Theme */
.falcone-volunteer-form {
    max-width: 100%;
    background: #EBEBEB; /* very light green */
    border-radius: 12px;
    padding: 20px;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.falcone-volunteer-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Each input group as a card */
.falcone-volunteer-form .form-group {
    background: #ffffff;
    border: 1px solid #a3d7a3;
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    transition: box-shadow 0.2s;
}

.falcone-volunteer-form .form-group:hover {
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

/* Labels */
.falcone-volunteer-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
    color: #1b3d1b; /* dark green */
}

/* Inputs & Textareas */
.falcone-volunteer-form input[type="text"],
.falcone-volunteer-form input[type="email"],
.falcone-volunteer-form input[type="file"],
.falcone-volunteer-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #a3d7a3;
    border-radius: 6px;
    font-size: 14px;
    background-color: #f7fff7;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.falcone-volunteer-form input[type="text"]:focus,
.falcone-volunteer-form input[type="email"]:focus,
.falcone-volunteer-form textarea:focus {
    border-color: #1b3d1b;
    box-shadow: 0 0 5px rgba(27, 61, 27, 0.3);
    background-color: #ffffff;
    outline: none;
}

/* Readonly input for position */
.falcone-volunteer-form input[readonly] {
    background-color: #dff0d8;
    cursor: not-allowed;
    font-weight: bold;
    color: #1b3d1b;
}

/* Submit button */
.falcone-volunteer-form input[type="submit"] {
    background: darkgreen;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    font-size: 15px;
    transition: background 0.3s, transform 0.2s;
}

.falcone-volunteer-form input[type="submit"]:hover {
    background: linear-gradient(to right, #145214, #66bb6a);
    transform: translateY(-1px);
}

/* Success/Error messages */
.falcone-volunteer-form .falcone-message {
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 14px;
}

.falcone-volunteer-form .falcone-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.falcone-volunteer-form .falcone-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* PDF link styling */
.falcone-volunteer-form a.pdf-link {
    display: inline-block;
    margin-top: 5px;
    color: #1b3d1b;
    font-size: 13px;
    text-decoration: none;
}

.falcone-volunteer-form a.pdf-link:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .falcone-volunteer-form {
        padding: 15px;
    }

    .falcone-volunteer-form label,
    .falcone-volunteer-form input[type="text"],
    .falcone-volunteer-form input[type="email"],
    .falcone-volunteer-form textarea,
    .falcone-volunteer-form input[type="submit"] {
        font-size: 13px;
    }
}
