.volunteer-application {
    position: relative;
    overflow: hidden;
}

.volunteer-application::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,100 M100,0 L0,100" stroke="%2310B981" stroke-width="0.5" stroke-dasharray="5,5" /></svg>');
    opacity: 0.05;
    z-index: -1;
}

.volunteer-form {
    transition: all 0.3s ease;
}

.volunteer-form input,
.volunteer-form select,
.volunteer-form textarea {
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
    color: #374151 !important;
    background-color: #FFFFFF !important;
}

.volunteer-form input:focus,
.volunteer-form select:focus,
.volunteer-form textarea:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    outline: none;
}

.volunteer-form input::placeholder,
.volunteer-form select::placeholder,
.volunteer-form textarea::placeholder {
    color: #9CA3AF;
}

.volunteer-form label {
    color: #374151;
    font-weight: 500;
}

.volunteer-form button {
    transition: all 0.3s ease;
}

.volunteer-form button:hover {
    transform: translateY(-2px);
}

.volunteer-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
