/* Volunteer Form Styles */
.volunteer-form-container { 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 20px; 
}

.volunteer-form-intro { 
    background: #f8f9fa; 
    padding: 30px; 
    border-radius: 8px; 
    margin-bottom: 30px; 
    text-align: center; 
}

.volunteer-form-intro h2 { 
    color: #2c3e50; 
    margin-bottom: 20px; 
    font-size: 28px; 
    font-weight: 600; 
}

.volunteer-form-intro p { 
    margin-bottom: 15px; 
    font-size: 16px; 
    line-height: 1.7; 
    color: #495057; 
}

.volunteer-opportunities { 
    background: #fff; 
    border: 1px solid #e9ecef; 
    border-radius: 8px; 
    padding: 25px; 
    margin-bottom: 30px; 
}

.volunteer-opportunities h3 { 
    color: #333; 
    margin-bottom: 20px; 
    font-size: 24px; 
    border-bottom: 3px solid #007bff; 
    padding-bottom: 10px; 
}

.opportunity-section { 
    margin-bottom: 25px; 
    padding-bottom: 20px; 
    border-bottom: 1px solid #f1f1f1; 
}

.opportunity-section h4 { 
    color: #007bff; 
    margin-bottom: 10px; 
    font-size: 18px; 
}

.volunteer-form { 
    background: #fff; 
    border: 1px solid #e9ecef; 
    border-radius: 8px; 
    padding: 30px; 
}

.form-section { 
    margin-bottom: 35px; 
    padding-bottom: 25px; 
    border-bottom: 1px solid #f1f3f4; 
}

.form-section h3 { 
    color: #2c3e50; 
    margin-bottom: 20px; 
    font-size: 20px; 
    font-weight: 600; 
    padding-bottom: 10px; 
    border-bottom: 2px solid #e9ecef; 
}

.form-group { 
    margin-bottom: 20px; 
}

.form-group label { 
    display: block; 
    margin-bottom: 8px; 
    font-weight: 600; 
    color: #2c3e50; 
    font-size: 14px; 
}

.required { 
    color: #dc3545; 
    font-weight: 700; 
}

.volunteer-form input, 
.volunteer-form select, 
.volunteer-form textarea { 
    width: 100%; 
    padding: 12px 15px; 
    border: 2px solid #e9ecef; 
    border-radius: 6px; 
    font-size: 14px; 
    display: block; 
    margin-top: 5px;
}

.volunteer-form textarea { 
    min-height: 100px; 
    resize: vertical; 
}

.checkbox-group { 
    margin-bottom: 25px; 
}

.checkbox-label { 
    display: flex; 
    align-items: flex-start; 
    cursor: pointer; 
    font-weight: normal; 
    line-height: 1.5; 
}

.checkbox-label input[type="checkbox"] { 
    width: auto; 
    margin-right: 12px; 
    margin-top: 3px; 
}

.form-submit { 
    text-align: center; 
    margin-top: 30px; 
}

.form-submit button { 
    background: #007bff; 
    color: #fff; 
    border: none; 
    padding: 15px 40px; 
    font-size: 16px; 
    font-weight: 600; 
    border-radius: 6px; 
    cursor: pointer; 
    text-transform: uppercase; 
}

.form-submit button:hover { 
    background: #0056b3; 
}

.form-submit button:disabled { 
    background: #6c757d; 
    cursor: not-allowed; 
}

.gender-other-field, 
.languages-explain-field { 
    margin-top: 10px; 
    padding-left: 20px; 
    border-left: 3px solid #007bff; 
}

.volunteer-form-response { 
    margin-top: 20px; 
    padding: 15px; 
    border-radius: 6px; 
    font-weight: 600; 
}

.volunteer-form-response.success { 
    background: #d4edda; 
    color: #155724; 
    border: 1px solid #c3e6cb; 
}

.volunteer-form-response.error { 
    background: #f8d7da; 
    color: #721c24; 
    border: 1px solid #f5c6cb; 
}
