.jamiat-volunteer-form-wrap {
    max-width: 700px;
    margin: 30px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.jamiat-volunteer-form .jv-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.jamiat-volunteer-form .jv-field .required {
    color: #c00;
}

.jamiat-volunteer-form .jv-field input,
.jamiat-volunteer-form .jv-field select,
.jamiat-volunteer-form .jv-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

.jamiat-volunteer-form .jv-field input:focus,
.jamiat-volunteer-form .jv-field select:focus,
.jamiat-volunteer-form .jv-field textarea:focus {
    border-color: #00452e;
    outline: none;
}

.jamiat-volunteer-form .jv-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .jamiat-volunteer-form .jv-row {
        grid-template-columns: 1fr;
    }
}

.jamiat-volunteer-form .jv-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .jamiat-volunteer-form .jv-row-3 {
        grid-template-columns: 1fr;
    }
}

.jamiat-volunteer-form .jv-submit-wrap {
    margin-top: 24px;
}

.jamiat-volunteer-form .jv-submit-btn {
    padding: 14px 28px;
    background: #00452e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.jamiat-volunteer-form .jv-submit-btn:hover {
    background: #003320;
}

.jamiat-volunteer-form .jv-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.jamiat-volunteer-form .jv-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 6px;
}

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

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

.jamiat-volunteer-form .jv-otp-btn {
    padding: 8px 16px;
    background: #00452e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.jamiat-volunteer-form .jv-otp-btn:hover:not(:disabled) {
    background: #003320;
}

.jamiat-volunteer-form .jv-otp-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.jamiat-volunteer-form .jv-otp-timer {
    font-size: 13px;
    color: #666;
}

.jamiat-volunteer-form .jv-captcha-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.jamiat-volunteer-form .jv-captcha-q {
    font-weight: 600;
    color: #333;
}

.jamiat-volunteer-form .jv-captcha-refresh {
    padding: 6px 12px;
    background: #f0f0f1;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
}

.jamiat-volunteer-form .jv-captcha-refresh:hover {
    background: #e0e0e0;
}
