/* Privacy Policy Checkbox Styles */
.privacy-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    margin: 20px 0;
}

.privacy-checkbox {
    margin-top: 3px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    min-width: 18px;
}

.privacy-label {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #495057;
    cursor: pointer;
    margin: 0;
}

.checkbox-required {
    color: #dc3545;
    font-weight: bold;
    margin-right: 3px;
}

.privacy-link {
    color: #007bff;
    text-decoration: underline;
    font-weight: 500;
}

.privacy-link:hover {
    color: #0056b3;
    text-decoration: none;
}

/* Validation Error Styling */
.privacy-checkbox-wrapper.error {
    border-color: #dc3545;
    background-color: #f8d7da;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .privacy-checkbox-wrapper {
        padding: 12px;
    }
    
    .privacy-label {
        font-size: 13px;
    }
}