/* Volunteer Form Styles */
.volunteer-form-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.volunteer-form-wrapper h2 {
    color: var(--primarycolor);
    font-size: var(--h2size);
    margin-bottom: 15px;
}

.volunteer-form-wrapper > p {
    font-size: 18px;
    color: var(--bodytext);
    margin-bottom: 30px;
}

.volunteer-message {
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 5px;
    font-size: 16px;
}

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

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

.form-section {
    margin-bottom: 30px;
}

.form-field {
    margin-bottom: 20px;
}

.checkbox-field label {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--primarycolor);
    cursor: pointer;
}

.checkbox-field input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
}

.volunteer-skills-section {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.volunteer-skills-section h3 {
    color: var(--primarycolor);
    font-size: var(--h3size);
    margin-bottom: 10px;
}

.volunteer-skills-section > p {
    font-size: 16px;
    color: var(--bodytext);
    margin-bottom: 20px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-option {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-option:hover {
    border-color: var(--secondarycolor);
    background-color: #f0f7e6;
}

.checkbox-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-option input[type="checkbox"]:checked ~ .option-label {
    color: var(--secondarycolor);
    font-weight: 600;
}

.option-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--primarycolor);
    display: block;
    margin-bottom: 5px;
}

.option-description {
    font-size: 14px;
    color: #6c757d;
    display: block;
    margin-left: 32px;
}

.form-actions {
    margin-top: 30px;
    text-align: center;
}

.volunteer-submit {
    background-color: var(--secondarycolor);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.volunteer-submit:hover {
    background-color: var(--primarycolor);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.volunteer-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .volunteer-form-wrapper {
        padding: 20px;
        margin: 20px;
    }

    .volunteer-form-wrapper h2 {
        font-size: 32px;
    }

    .volunteer-skills-section h3 {
        font-size: 24px;
    }

    .checkbox-option {
        padding: 12px;
    }

    .option-label {
        font-size: 16px;
    }

    .option-description {
        font-size: 13px;
        margin-left: 28px;
    }

    .volunteer-submit {
        width: 100%;
        padding: 12px 30px;
        font-size: 16px;
    }
}